indentation

This commit is contained in:
fluxgen 2002-02-26 08:56:50 +00:00
parent 6135f4eff3
commit bdb0d00f2f

View file

@ -22,6 +22,8 @@
#ifndef WORKSPACE_HH
#define WORKSPACE_HH
#include "Window.hh"
#include <X11/Xlib.h>
#include <string>
#include <vector>
@ -30,7 +32,7 @@
class BScreen;
class Clientmenu;
class Workspace;
class FluxboxWindow;
class Workspace {
@ -41,23 +43,15 @@ public:
~Workspace(void);
inline BScreen *getScreen(void) { return screen; }
inline FluxboxWindow *getLastFocusedWindow(void) { return lastfocus; }
inline Clientmenu *getMenu(void) { return clientmenu; }
inline const char *getName(void) const { return name.c_str(); }
inline const int &getWorkspaceID(void) const { return id; }
inline void setLastFocusedWindow(FluxboxWindow *w) { lastfocus = w; }
FluxboxWindow *getWindow(int);
inline Windows &getWindowList() { return windowList; }
bool isCurrent(void);
bool isLastWindow(FluxboxWindow *);
const int addWindow(FluxboxWindow *, Bool = False);
const int removeWindow(FluxboxWindow *);
const int getCount(void);