]> icculus.org git repositories - duncan/yast2-web-wt.git/blob - src/YWebPushButton.cc
7b59c2a39bfc01f78ba9a9e2ebe2b45c5573cb54
[duncan/yast2-web-wt.git] / src / YWebPushButton.cc
1 /*---------------------------------------------------------------------\
2 |                                                                      |
3 |                      __   __    ____ _____ ____                      |
4 |                      \ \ / /_ _/ ___|_   _|___ \                     |
5 |                       \ V / _` \___ \ | |   __) |                    |
6 |                        | | (_| |___) || |  / __/                     |
7 |                        |_|\__,_|____/ |_| |_____|                    |
8 |                                                                      |
9 |                               core system                            |
10 |                                                        (C) SuSE GmbH |
11 \----------------------------------------------------------------------/
12
13   File:         YWebPushButton.cc
14
15   Author:       Stefan Hundhammer <sh@suse.de>
16
17 /-*/
18
19
20 #define y2log_component "web-ui"
21 #include <ycp/y2log.h>
22
23 #include "YWebPushButton.h"
24
25
26 using std::string;
27
28
29 YWebPushButton::YWebPushButton( YWidget * parent, const string & label )
30     : YPushButton( parent, label )
31 {
32 }
33
34
35 YWebPushButton::~YWebPushButton()
36 {
37     // NOP
38 }
39
40 int YWebPushButton::preferredWidth()
41 {
42     // FIXME
43     return 1;
44 }
45
46 int YWebPushButton::preferredHeight()
47 {
48     // FIXME
49     return 1;
50 }
51
52
53 void YWebPushButton::setSize( int newWidth, int newHeight )
54 {
55     // FIXME
56 }
57