all repos — fluxbox @ 35394a486cf9e08b585a532e885c462a4beddea1

custom fork of the fluxbox windowmanager

inline
fluxgen fluxgen
commit

35394a486cf9e08b585a532e885c462a4beddea1

parent

8c8e4f0f4ac4c0e03c142e8f3929ad479f0df039

1 files changed, 14 insertions(+), 14 deletions(-)

jump to
M src/Screen.hhsrc/Screen.hh

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Screen.hh,v 1.130 2003/12/19 01:46:58 fluxgen Exp $ +// $Id: Screen.hh,v 1.131 2003/12/30 17:57:12 fluxgen Exp $ #ifndef SCREEN_HH #define SCREEN_HH

@@ -197,23 +197,23 @@ inline const RootTheme &rootTheme() const { return *m_root_theme.get(); }

inline WinButtonTheme &winButtonTheme() { return *m_winbutton_theme.get(); } inline const WinButtonTheme &winButtonTheme() const { return *m_winbutton_theme.get(); } - FbRootWindow &rootWindow() { return m_root_window; } - const FbRootWindow &rootWindow() const { return m_root_window; } + inline FbRootWindow &rootWindow() { return m_root_window; } + inline const FbRootWindow &rootWindow() const { return m_root_window; } - FbTk::MultLayers &layerManager() { return m_layermanager; } - const FbTk::MultLayers &layerManager() const { return m_layermanager; } - FbTk::ResourceManager &resourceManager() { return m_resource_manager; } - const FbTk::ResourceManager &resourceManager() const { return m_resource_manager; } - const std::string &name() const { return m_name; } - const std::string &altName() const { return m_altname; } - bool isShuttingdown() const { return m_shutdown; } + inline FbTk::MultLayers &layerManager() { return m_layermanager; } + inline const FbTk::MultLayers &layerManager() const { return m_layermanager; } + inline FbTk::ResourceManager &resourceManager() { return m_resource_manager; } + inline const FbTk::ResourceManager &resourceManager() const { return m_resource_manager; } + inline const std::string &name() const { return m_name; } + inline const std::string &altName() const { return m_altname; } + inline bool isShuttingdown() const { return m_shutdown; } int addWorkspace(); int removeLastWorkspace(); // scroll workspaces - void nextWorkspace() { nextWorkspace(1); } - void prevWorkspace() { prevWorkspace(1); } + inline void nextWorkspace() { nextWorkspace(1); } + inline void prevWorkspace() { prevWorkspace(1); } void nextWorkspace(int delta); void prevWorkspace(int delta); void rightWorkspace(int delta);

@@ -237,8 +237,8 @@ void sendToWorkspace(unsigned int workspace, FluxboxWindow *win=0,

bool changeworkspace=true); void reassociateWindow(FluxboxWindow *window, unsigned int workspace_id, bool ignore_sticky); - void prevFocus() { prevFocus(0); } - void nextFocus() { nextFocus(0); } + inline void prevFocus() { prevFocus(0); } + inline void nextFocus() { nextFocus(0); } void prevFocus(int options); void nextFocus(int options); void raiseFocus();