indentation
This commit is contained in:
parent
6135f4eff3
commit
bdb0d00f2f
1 changed files with 41 additions and 47 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue