~ubuntu-branches/ubuntu/trusty/fluxbox/trusty-proposed

« back to all changes in this revision

Viewing changes to src/FbTk/Container.cc

  • Committer: Package Import Robot
  • Author(s): Paul Tagliamonte
  • Date: 2010-08-12 21:16:02 UTC
  • mfrom: (0.1.1) (1.1.10)
  • Revision ID: package-import@ubuntu.com-20100812211602-3tsmzl9in5nmwz7z
Tags: 1.1.1+git20100807.0cc08f9-1
* debian/ dir has been cleaned out, complete repackage
  of most files.
* pulled new archive from git.fluxbox.org HEAD, saved as
  tar.gz.
* Added in fluxbox.* files from the old dfsg tree.
* Added in system.fluxbox-menu file from the old dfsg tree
* Added the source/format file to bump package source
  version from 1.0 to 3.0 (quilt). 
* Changed rules file to match the old dfsg setup so that
  fluxbox behaves nicely.
* Removed entries from copyright that no longer apply.
* Added theme based on Denis Brand ( naran )'s old theme.
* Added a background I whipped up.
* Changed compile flags to point to debian theme by default
* Adding a patch to have fluxbox use x-terminal-emulator
  over xterm. Closes: #591694 (LP: #580485)
* Adding a patch to allow titlebar-window dragging.
* Changed the flags in rules to pull from a script. This script
  lets us un-hardcode what theme is default. Be sure there
  is a theme pack!
* Added comments to my patches.
* Removing debian/docs, empty file.
* Fixing fluxbox.desktop to remove all the warnings from
  desktop-file-validate
* Fixing libtool issue by running an update before
  configure in the rules script.
* Added a compile flag script to auto-detect what platform
  we are running on, and apply the correct theme. This
  should solve Ubuntnu issues later on.
* adding in a get-orig-source rule
* fixing the upstream version number to pinpoint
  the commit ( thanks, lfaraone ).
* adding a rule for get-orig-source. ( thanks again,
  lfaraone ).
* Updated rules to actually allow us to do a build from it
* Removed Denis from the uploaders ( as per an email
  conversation )
* Removing madduck from the uploaders ( thanks for asking,
  lfaraone. ). Thanks for your hard work, madduck.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
typedef CompareEqual_base<FbWindow, Window> CompareWindow;
35
35
 
36
 
Container::Container(const FbWindow &parent):
 
36
Container::Container(const FbWindow &parent, bool auto_resize):
37
37
    FbWindow(parent, 0, 0, 1, 1, ExposureMask),
38
38
    m_orientation(ROT0),
39
39
    m_align(RELATIVE),
40
40
    m_max_size_per_client(60),
41
41
    m_max_total_size(0),
42
 
    m_update_lock(false) {
 
42
    m_update_lock(false),
 
43
    m_auto_resize(auto_resize) {
43
44
    EventManager::instance()->add(*this, *this);
44
45
}
45
46
 
228
229
}
229
230
 
230
231
void Container::setAlignment(Container::Alignment a) {
231
 
    m_align = a;
 
232
    if (m_align != a) {
 
233
        m_align = a;
 
234
        repositionItems();
 
235
    }
232
236
}
233
237
 
234
238
void Container::exposeEvent(XExposeEvent &event) {
328
332
            } else
329
333
                max_width_per_client = 1;
330
334
        }
331
 
        if (total_width != cur_width) {
 
335
        if (m_auto_resize && total_width != cur_width) {
332
336
            // calling Container::resize here risks infinite loops
333
337
            unsigned int neww = total_width, newh = height;
334
338
            translateSize(m_orientation, neww, newh);