X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fopenbox.hh;h=77b39ce5fb3d57db2e250cc47a8888457d54369d;hb=14813743539bafc42c91f5aedd28788dcd64ea5e;hp=8145531fc4e64abb36105f8b78985947fab5b1c1;hpb=e2069b5792a80ba8ccfd03c9d1bdd5e364dbee10;p=chaz%2Fopenbox diff --git a/src/openbox.hh b/src/openbox.hh index 8145531f..77b39ce5 100644 --- a/src/openbox.hh +++ b/src/openbox.hh @@ -72,9 +72,6 @@ public: typedef std::vector ScreenList; private: - //! The display on which Openbox is running - otk::Display _display; - // stuff that can be passed on the command line //! Path to the config file to use/in use /*! @@ -91,8 +88,6 @@ private: Defaults to $(HOME)/.openbox/user.py */ std::string _scriptfilepath; - //! The display requested by the user, or null to use the DISPLAY env var - char *_displayreq; //! The value of argv, i.e. how this application was executed char **_argv; //! Run the application in synchronous mode? (for debugging) @@ -153,7 +148,6 @@ private: static void signalHandler(int signal); public: -#ifndef SWIG //! Openbox constructor. /*! \param argc Number of command line arguments, as received in main() @@ -162,7 +156,6 @@ public: Openbox(int argc, char **argv); //! Openbox destructor. virtual ~Openbox(); -#endif //! Returns the state of the window manager (starting, exiting, etc) inline RunState state() const { return _state; } @@ -187,7 +180,6 @@ public: //! Returns the mouse cursors used throughout Openbox inline const Cursors &cursors() const { return _cursors; } -#ifndef SWIG //! The main function of the Openbox class /*! This function should be called after instantiating the Openbox class. @@ -195,7 +187,6 @@ public: The Openbox::shutdown method will cause this function to exit. */ void eventLoop(); -#endif //! Adds an Client to the client list for lookups void addClient(Window window, Client *client);