cleaning
This commit is contained in:
parent
72b878f78c
commit
90ff80f89b
7 changed files with 18 additions and 22 deletions
|
@ -19,7 +19,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: FbCommands.hh,v 1.13 2003/12/03 22:13:21 fluxgen Exp $
|
// $Id: FbCommands.hh,v 1.14 2003/12/16 23:35:00 fluxgen Exp $
|
||||||
|
|
||||||
// \file contains basic commands to restart, reconfigure, execute command and exit fluxbox
|
// \file contains basic commands to restart, reconfigure, execute command and exit fluxbox
|
||||||
|
|
||||||
|
@ -98,6 +98,6 @@ public:
|
||||||
void execute();
|
void execute();
|
||||||
};
|
};
|
||||||
|
|
||||||
}; // end namespace FbCommands
|
} // end namespace FbCommands
|
||||||
|
|
||||||
#endif // FBCOMMANDS_HH
|
#endif // FBCOMMANDS_HH
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: FbWinFrame.hh,v 1.25 2003/12/09 08:48:08 rathnor Exp $
|
// $Id: FbWinFrame.hh,v 1.26 2003/12/16 23:34:36 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef FBWINFRAME_HH
|
#ifndef FBWINFRAME_HH
|
||||||
#define FBWINFRAME_HH
|
#define FBWINFRAME_HH
|
||||||
|
@ -46,7 +46,7 @@ class ImageControl;
|
||||||
class Command;
|
class Command;
|
||||||
class Button;
|
class Button;
|
||||||
class Texture;
|
class Texture;
|
||||||
};
|
}
|
||||||
|
|
||||||
/// holds a window frame with a client window
|
/// holds a window frame with a client window
|
||||||
/// (see: <a href="fluxbox_fbwinframe.png">image</a>)
|
/// (see: <a href="fluxbox_fbwinframe.png">image</a>)
|
||||||
|
@ -295,7 +295,7 @@ private:
|
||||||
class ThemeListener: public FbTk::Observer {
|
class ThemeListener: public FbTk::Observer {
|
||||||
public:
|
public:
|
||||||
ThemeListener(FbWinFrame &frame):m_frame(frame) { }
|
ThemeListener(FbWinFrame &frame):m_frame(frame) { }
|
||||||
void update(FbTk::Subject *subj) {
|
void update(FbTk::Subject *) {
|
||||||
m_frame.reconfigure();
|
m_frame.reconfigure();
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
|
|
10
src/Keys.hh
10
src/Keys.hh
|
@ -19,7 +19,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: Keys.hh,v 1.29 2003/10/05 07:19:36 rathnor Exp $
|
// $Id: Keys.hh,v 1.30 2003/12/16 23:32:29 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef KEYS_HH
|
#ifndef KEYS_HH
|
||||||
#define KEYS_HH
|
#define KEYS_HH
|
||||||
|
@ -28,11 +28,9 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
|
|
||||||
#include "NotCopyable.hh"
|
#include "FbTk/NotCopyable.hh"
|
||||||
#include "RefCount.hh"
|
#include "FbTk/RefCount.hh"
|
||||||
namespace FbTk {
|
#include "FbTk/Command.hh"
|
||||||
class Command;
|
|
||||||
};
|
|
||||||
|
|
||||||
class Keys:private FbTk::NotCopyable {
|
class Keys:private FbTk::NotCopyable {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: Shape.hh,v 1.2 2003/08/24 15:02:15 fluxgen Exp $
|
// $Id: Shape.hh,v 1.3 2003/12/16 23:32:02 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef SHAPE_HH
|
#ifndef SHAPE_HH
|
||||||
#define SHAPE_HH
|
#define SHAPE_HH
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
namespace FbTk {
|
namespace FbTk {
|
||||||
class FbWindow;
|
class FbWindow;
|
||||||
};
|
}
|
||||||
|
|
||||||
/// creates round corners on windows
|
/// creates round corners on windows
|
||||||
class Shape {
|
class Shape {
|
||||||
|
@ -38,7 +38,7 @@ public:
|
||||||
BOTTOMRIGHT = 0x01,
|
BOTTOMRIGHT = 0x01,
|
||||||
TOPRIGHT = 0x02,
|
TOPRIGHT = 0x02,
|
||||||
BOTTOMLEFT = 0x04,
|
BOTTOMLEFT = 0x04,
|
||||||
TOPLEFT = 0x08,
|
TOPLEFT = 0x08
|
||||||
};
|
};
|
||||||
|
|
||||||
Shape(FbTk::FbWindow &win, int shapeplaces);
|
Shape(FbTk::FbWindow &win, int shapeplaces);
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: Toolbar.hh,v 1.50 2003/12/08 17:29:44 fluxgen Exp $
|
// $Id: Toolbar.hh,v 1.51 2003/12/16 23:33:21 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef TOOLBAR_HH
|
#ifndef TOOLBAR_HH
|
||||||
#define TOOLBAR_HH
|
#define TOOLBAR_HH
|
||||||
|
@ -50,7 +50,7 @@ class ToolbarItem;
|
||||||
|
|
||||||
namespace FbTk {
|
namespace FbTk {
|
||||||
class ImageControl;
|
class ImageControl;
|
||||||
};
|
}
|
||||||
|
|
||||||
/// The toolbar.
|
/// The toolbar.
|
||||||
/// Handles iconbar, workspace name view and clock view
|
/// Handles iconbar, workspace name view and clock view
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: Window.hh,v 1.101 2003/12/07 17:47:42 fluxgen Exp $
|
// $Id: Window.hh,v 1.102 2003/12/16 23:28:36 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef WINDOW_HH
|
#ifndef WINDOW_HH
|
||||||
#define WINDOW_HH
|
#define WINDOW_HH
|
||||||
|
@ -387,7 +387,6 @@ private:
|
||||||
void updateMWMHintsFromClient(WinClient &client);
|
void updateMWMHintsFromClient(WinClient &client);
|
||||||
void updateBlackboxHintsFromClient(const WinClient &client);
|
void updateBlackboxHintsFromClient(const WinClient &client);
|
||||||
void saveBlackboxAttribs();
|
void saveBlackboxAttribs();
|
||||||
void setNetWMAttributes();
|
|
||||||
void associateClientWindow(bool use_attrs = false, int x = 0, int y = 0, unsigned int width = 1, unsigned int height = 1);
|
void associateClientWindow(bool use_attrs = false, int x = 0, int y = 0, unsigned int width = 1, unsigned int height = 1);
|
||||||
|
|
||||||
void restoreGravity();
|
void restoreGravity();
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: fluxbox.cc,v 1.206 2003/12/09 12:28:24 rathnor Exp $
|
// $Id: fluxbox.cc,v 1.207 2003/12/16 23:36:06 fluxgen Exp $
|
||||||
|
|
||||||
#include "fluxbox.hh"
|
#include "fluxbox.hh"
|
||||||
|
|
||||||
|
@ -368,7 +368,7 @@ void copyFile(const std::string &from, const std::string &to) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
} // end anonymous
|
||||||
|
|
||||||
static int handleXErrors(Display *d, XErrorEvent *e) {
|
static int handleXErrors(Display *d, XErrorEvent *e) {
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
@ -1983,7 +1983,7 @@ void Fluxbox::setFocusedWindow(WinClient *client) {
|
||||||
#endif // DEBUG
|
#endif // DEBUG
|
||||||
BScreen *old_screen = 0, *screen = 0;
|
BScreen *old_screen = 0, *screen = 0;
|
||||||
WinClient *old_client = 0;
|
WinClient *old_client = 0;
|
||||||
Workspace *old_wkspc = 0, *wkspc = 0;
|
Workspace *old_wkspc = 0;
|
||||||
|
|
||||||
if (m_focused_window != 0) {
|
if (m_focused_window != 0) {
|
||||||
// check if m_focused_window is valid
|
// check if m_focused_window is valid
|
||||||
|
@ -2024,7 +2024,6 @@ void Fluxbox::setFocusedWindow(WinClient *client) {
|
||||||
m_focused_window = 0; // the window pointer wasn't valid, mark no window focused
|
m_focused_window = 0; // the window pointer wasn't valid, mark no window focused
|
||||||
} else {
|
} else {
|
||||||
screen = *winscreen;
|
screen = *winscreen;
|
||||||
wkspc = screen->getWorkspace(win->workspaceNumber());
|
|
||||||
m_focused_window = client; // update focused window
|
m_focused_window = client; // update focused window
|
||||||
win->setCurrentClient(*client, false); // don't setinputfocus
|
win->setCurrentClient(*client, false); // don't setinputfocus
|
||||||
win->setFocusFlag(true); // set focus flag
|
win->setFocusFlag(true); // set focus flag
|
||||||
|
|
Loading…
Reference in a new issue