X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=inline;f=gtk2_ardour%2Fwindow_proxy.h;h=10ff25ced652853f5c7b86913fe1270eeb4e5016;hb=9dc781114779009c4b3d962a28a721d2569eec74;hp=58a67eb3918a6389e449e313c9854594c81aa027;hpb=6832155310c5de60ea6774f67dfc5787b592e75e;p=ardour.git diff --git a/gtk2_ardour/window_proxy.h b/gtk2_ardour/window_proxy.h index 58a67eb391..10ff25ced6 100755 --- a/gtk2_ardour/window_proxy.h +++ b/gtk2_ardour/window_proxy.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2010 Paul Davis + Copyright (C) 2010 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,7 +33,7 @@ class XMLNode; * Subclasses of WindowProxy handle windows that are created in different * ways. */ - + class WindowProxyBase { public: @@ -43,7 +43,7 @@ public: std::string name () const { return _name; } - + void maybe_show (); XMLNode* get_state () const; void setup (); @@ -61,11 +61,11 @@ public: private: XMLNode* state_node (bool, int, int, int, int) const; - + std::string _name; ///< internal unique name for this window bool _visible; ///< true if the window should be visible on startup int _x_off; ///< x position - int _y_off; ///< y position + int _y_off; ///< y position int _width; ///< width int _height; ///< height }; @@ -79,7 +79,7 @@ public: : WindowProxyBase (name, node) , _window (0) { - + } Gtk::Window* get_gtk_window () const { @@ -119,7 +119,7 @@ public: : WindowProxy (name, node) , _action (action) { - + } void show () {