minor cleaning
This commit is contained in:
parent
834abda73c
commit
278b562d1d
1 changed files with 6 additions and 9 deletions
15
src/Slit.hh
15
src/Slit.hh
|
@ -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: Slit.hh,v 1.23 2003/04/25 10:45:02 fluxgen Exp $
|
/// $Id: Slit.hh,v 1.24 2003/04/25 16:55:39 fluxgen Exp $
|
||||||
|
|
||||||
#ifndef SLIT_HH
|
#ifndef SLIT_HH
|
||||||
#define SLIT_HH
|
#define SLIT_HH
|
||||||
|
@ -32,7 +32,6 @@
|
||||||
#include "Timer.hh"
|
#include "Timer.hh"
|
||||||
#include "XLayerItem.hh"
|
#include "XLayerItem.hh"
|
||||||
#include "LayerMenu.hh"
|
#include "LayerMenu.hh"
|
||||||
#include "fluxbox.hh"
|
|
||||||
|
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
|
@ -54,12 +53,11 @@ public:
|
||||||
*/
|
*/
|
||||||
enum Direction { VERTICAL = 1, HORIZONTAL };
|
enum Direction { VERTICAL = 1, HORIZONTAL };
|
||||||
/**
|
/**
|
||||||
Screen placement
|
Placement on screen
|
||||||
*/
|
*/
|
||||||
enum Placement { TOPLEFT = 1, CENTERLEFT, BOTTOMLEFT, TOPCENTER, BOTTOMCENTER,
|
enum Placement { TOPLEFT = 1, CENTERLEFT, BOTTOMLEFT, TOPCENTER, BOTTOMCENTER,
|
||||||
TOPRIGHT, CENTERRIGHT, BOTTOMRIGHT };
|
TOPRIGHT, CENTERRIGHT, BOTTOMRIGHT };
|
||||||
|
Slit(BScreen &screen, FbTk::XLayer &layer, const char *filename = 0);
|
||||||
explicit Slit(BScreen &screen, FbTk::XLayer &layer, const char *filename = 0);
|
|
||||||
virtual ~Slit();
|
virtual ~Slit();
|
||||||
|
|
||||||
inline bool isHidden() const { return hidden; }
|
inline bool isHidden() const { return hidden; }
|
||||||
|
@ -68,7 +66,7 @@ public:
|
||||||
inline Placement placement() const { return m_placement; }
|
inline Placement placement() const { return m_placement; }
|
||||||
FbTk::Menu &menu() { return slitmenu; }
|
FbTk::Menu &menu() { return slitmenu; }
|
||||||
|
|
||||||
inline Window getWindowID() const { return frame.window.window(); }
|
inline const FbTk::FbWindow &window() const { return frame.window; }
|
||||||
|
|
||||||
inline int x() const { return ((hidden) ? frame.x_hidden : frame.x); }
|
inline int x() const { return ((hidden) ? frame.x_hidden : frame.x); }
|
||||||
inline int y() const { return ((hidden) ? frame.y_hidden : frame.y); }
|
inline int y() const { return ((hidden) ? frame.y_hidden : frame.y); }
|
||||||
|
@ -80,7 +78,7 @@ public:
|
||||||
void setPlacement(Placement place);
|
void setPlacement(Placement place);
|
||||||
void setAutoHide(bool val);
|
void setAutoHide(bool val);
|
||||||
void addClient(Window clientwin);
|
void addClient(Window clientwin);
|
||||||
void removeClient(Window clientwin, bool = true);
|
void removeClient(Window clientwin, bool remap = true);
|
||||||
void reconfigure();
|
void reconfigure();
|
||||||
void reposition();
|
void reposition();
|
||||||
void shutdown();
|
void shutdown();
|
||||||
|
@ -128,8 +126,7 @@ private:
|
||||||
|
|
||||||
SlitClients clientList;
|
SlitClients clientList;
|
||||||
FbTk::Menu slitmenu, placement_menu, clientlist_menu;
|
FbTk::Menu slitmenu, placement_menu, clientlist_menu;
|
||||||
std::auto_ptr<LayerMenu<Slit> > slit_layermenu;
|
std::auto_ptr<LayerMenu<Slit> > m_slit_layermenu;
|
||||||
std::string clientListPath;
|
|
||||||
std::string m_filename;
|
std::string m_filename;
|
||||||
|
|
||||||
struct frame {
|
struct frame {
|
||||||
|
|
Loading…
Reference in a new issue