~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gui/emotewindow.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include "gui/emotewindow.h"
22
22
 
23
 
#include "gui/chatwindow.h"
24
 
#include "gui/gui.h"
25
 
 
26
23
#include "gui/widgets/colormodel.h"
27
24
#include "gui/widgets/colorpage.h"
28
25
#include "gui/widgets/emotepage.h"
29
 
#include "gui/widgets/layouthelper.h"
30
26
#include "gui/widgets/namesmodel.h"
31
27
#include "gui/widgets/scrollarea.h"
32
28
#include "gui/widgets/tabbedarea.h"
33
29
 
34
 
#include "units.h"
35
 
 
36
30
#include "utils/gettext.h"
37
31
 
 
32
#include "resources/image.h"
38
33
#include "resources/imageset.h"
39
34
 
40
 
#include <guichan/font.hpp>
41
 
 
42
35
#include "debug.h"
43
36
 
44
37
static const int fontSizeListSize = 2;
226
219
    mTabs->adjustWidget(mScrollColorPage);
227
220
    mColorPage->setSize(mScrollColorPage->getWidth(),
228
221
        mScrollColorPage->getHeight());
 
222
    mEmotePage->widgetResized(event);
 
223
}
 
224
 
 
225
void EmoteWindow::widgetMoved(const gcn::Event &event)
 
226
{
 
227
    Window::widgetMoved(event);
 
228
    mEmotePage->widgetResized(event);
229
229
}