all repos — fluxbox @ 5a24731d3af68f376db099d8bb8ee4d7cb581124

custom fork of the fluxbox windowmanager

different window for position coordinates, patch from Junichiro Kita
fluxgen fluxgen
commit

5a24731d3af68f376db099d8bb8ee4d7cb581124

parent

f06fef6b4982976339de592fab0471239cc79d99

2 files changed, 9 insertions(+), 6 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.132 2004/01/11 16:05:55 fluxgen Exp $ +// $Id: Screen.hh,v 1.133 2004/01/16 11:58:45 fluxgen Exp $ #ifndef SCREEN_HH #define SCREEN_HH

@@ -253,6 +253,7 @@ void rereadMenu();

void shutdown(); /// show position window centered on the screen with "X x Y" text void showPosition(int x, int y); + void hidePosition(); /// show geomentry with "width x height"-text, not size of window void showGeometry(unsigned int width, unsigned int height); void hideGeometry();

@@ -351,6 +352,7 @@

bool doSkipWindow(const WinClient &winclient, int options); void renderGeomWindow(); + void renderPosWindow(); void updateIconMenu(); ScreenSubject

@@ -364,11 +366,11 @@ m_resize_sig; ///< resize signal

FbTk::MultLayers m_layermanager; - bool root_colormap_installed, managed, geom_visible, cycling_focus; + bool root_colormap_installed, managed, geom_visible, pos_visible, cycling_focus; GC opGC; - Pixmap geom_pixmap; + Pixmap geom_pixmap, pos_pixmap; - FbTk::FbWindow m_geom_window; + FbTk::FbWindow m_geom_window, m_pos_window; std::auto_ptr<FbTk::ImageControl> m_image_control; std::auto_ptr<FbTk::Menu> m_configmenu;
M src/Window.ccsrc/Window.cc

@@ -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: Window.cc,v 1.260 2004/01/16 11:41:38 fluxgen Exp $ +// $Id: Window.cc,v 1.261 2004/01/16 11:58:45 fluxgen Exp $ #include "Window.hh"

@@ -294,6 +294,7 @@ #endif // DEBUG

if (moving || resizing || m_attaching_tab) { screen().hideGeometry(); + screen().hidePosition(); XUngrabPointer(display, CurrentTime); }

@@ -2811,7 +2812,7 @@ sendConfigureNotify();

} - screen().hideGeometry(); + screen().hidePosition(); XUngrabPointer(display, CurrentTime); FbTk::App::instance()->sync(false); //make sure the redraw is made before we continue