diff options
author | simonb <simonb> | 2006-04-17 14:00:28 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-04-17 14:00:28 (GMT) |
commit | b2105a62c378b013257cd1a79ea5a50b4a90a82f (patch) | |
tree | 09479d8b005501a82d5259ababb860cd642c2232 | |
parent | a211ca912da6e17cfeee8a8fdde9d4eeff7c51a7 (diff) | |
download | fluxbox-b2105a62c378b013257cd1a79ea5a50b4a90a82f.zip fluxbox-b2105a62c378b013257cd1a79ea5a50b4a90a82f.tar.bz2 |
fix fbrun positioning code to use hints properly
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | util/fbrun/FbRun.cc | 8 | ||||
-rw-r--r-- | util/fbrun/FbRun.hh | 5 | ||||
-rw-r--r-- | util/fbrun/main.cc | 2 |
4 files changed, 13 insertions, 4 deletions
@@ -1,6 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.16: | 2 | Changes for 0.9.16: |
3 | *06/04/17: | 3 | *06/04/17: |
4 | * Fix fbrun position setting (-pos and -nearmouse args) (Simon) | ||
5 | util/fbrun/... FbRun.hh/cc main.cc | ||
4 | * Resize the clock if the text gets too big, sf.net patch #1436406 | 6 | * Resize the clock if the text gets too big, sf.net patch #1436406 |
5 | (thanks Geoff Lywood - glywood at users.sourceforge.net) | 7 | (thanks Geoff Lywood - glywood at users.sourceforge.net) |
6 | ClockTool.cc | 8 | ClockTool.cc |
diff --git a/util/fbrun/FbRun.cc b/util/fbrun/FbRun.cc index 281b35f..41c7474 100644 --- a/util/fbrun/FbRun.cc +++ b/util/fbrun/FbRun.cc | |||
@@ -215,7 +215,6 @@ void FbRun::setTitle(const string &title) { | |||
215 | 215 | ||
216 | void FbRun::resize(unsigned int width, unsigned int height) { | 216 | void FbRun::resize(unsigned int width, unsigned int height) { |
217 | FbTk::TextBox::resize(width, height); | 217 | FbTk::TextBox::resize(width, height); |
218 | setNoMaximize(); | ||
219 | } | 218 | } |
220 | 219 | ||
221 | void FbRun::redrawLabel() { | 220 | void FbRun::redrawLabel() { |
@@ -285,7 +284,7 @@ void FbRun::keyPressEvent(XKeyEvent &ke) { | |||
285 | clear(); | 284 | clear(); |
286 | } | 285 | } |
287 | 286 | ||
288 | void FbRun::setNoMaximize() { | 287 | void FbRun::lockPosition(bool size_too) { |
289 | // we don't need to maximize this window | 288 | // we don't need to maximize this window |
290 | XSizeHints sh; | 289 | XSizeHints sh; |
291 | sh.flags = PMaxSize | PMinSize; | 290 | sh.flags = PMaxSize | PMinSize; |
@@ -293,6 +292,11 @@ void FbRun::setNoMaximize() { | |||
293 | sh.max_height = height(); | 292 | sh.max_height = height(); |
294 | sh.min_width = width(); | 293 | sh.min_width = width(); |
295 | sh.min_height = height(); | 294 | sh.min_height = height(); |
295 | if (size_too) { | ||
296 | sh.flags |= USPosition; | ||
297 | sh.x = x(); | ||
298 | sh.y = y(); | ||
299 | } | ||
296 | XSetWMNormalHints(m_display, window(), &sh); | 300 | XSetWMNormalHints(m_display, window(), &sh); |
297 | } | 301 | } |
298 | 302 | ||
diff --git a/util/fbrun/FbRun.hh b/util/fbrun/FbRun.hh index fb23a3a..f34f691 100644 --- a/util/fbrun/FbRun.hh +++ b/util/fbrun/FbRun.hh | |||
@@ -66,6 +66,9 @@ public: | |||
66 | void keyPressEvent(XKeyEvent &ev); | 66 | void keyPressEvent(XKeyEvent &ev); |
67 | ///@} | 67 | ///@} |
68 | 68 | ||
69 | /// set no maximizable for this window | ||
70 | void lockPosition(bool size_too); | ||
71 | |||
69 | private: | 72 | private: |
70 | void nextHistoryItem(); | 73 | void nextHistoryItem(); |
71 | void prevHistoryItem(); | 74 | void prevHistoryItem(); |
@@ -73,8 +76,6 @@ private: | |||
73 | void getSize(size_t &width, size_t &height); | 76 | void getSize(size_t &width, size_t &height); |
74 | void createWindow(int x, int y, size_t width, size_t height); | 77 | void createWindow(int x, int y, size_t width, size_t height); |
75 | void redrawLabel(); | 78 | void redrawLabel(); |
76 | /// set no maximizable for this window | ||
77 | void setNoMaximize(); | ||
78 | 79 | ||
79 | void insertCharacter(char key); | 80 | void insertCharacter(char key); |
80 | void adjustStartPos(); | 81 | void adjustStartPos(); |
diff --git a/util/fbrun/main.cc b/util/fbrun/main.cc index 06ec644..878b5eb 100644 --- a/util/fbrun/main.cc +++ b/util/fbrun/main.cc | |||
@@ -205,6 +205,8 @@ int main(int argc, char **argv) { | |||
205 | 205 | ||
206 | if (set_pos) | 206 | if (set_pos) |
207 | fbrun.move(x, y); | 207 | fbrun.move(x, y); |
208 | |||
209 | fbrun.lockPosition(set_pos); | ||
208 | 210 | ||
209 | fbrun.show(); | 211 | fbrun.show(); |
210 | 212 | ||