libyui-qt  2.47.1.1
YQTimeField.h
1 /*
2  Copyright (C) 2000-2012 Novell, Inc
3  This library is free software; you can redistribute it and/or modify
4  it under the terms of the GNU Lesser General Public License as
5  published by the Free Software Foundation; either version 2.1 of the
6  License, or (at your option) version 3.0 of the License. This library
7  is distributed in the hope that it will be useful, but WITHOUT ANY
8  WARRANTY; without even the implied warranty of MERCHANTABILITY or
9  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
10  License for more details. You should have received a copy of the GNU
11  Lesser General Public License along with this library; if not, write
12  to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
13  Floor, Boston, MA 02110-1301 USA
14 */
15 
16 
17 /*-/
18 
19  File: YQTimeField.h
20 
21  Author: Stefan Hundhammer <sh@suse.de>
22 
23 /-*/
24 
25 
26 #ifndef YQTimeField_h
27 #define YQTimeField_h
28 
29 #include <QFrame>
30 #include <yui/YTimeField.h>
31 
32 class YQWidgetCaption;
33 class QTimeEdit;
34 
35 
36 class YQTimeField : public QFrame, public YTimeField
37 {
38  Q_OBJECT
39 
40 public:
41  /**
42  * Constructor.
43  **/
44  YQTimeField( YWidget * parent,
45  const std::string & label );
46 
47  /**
48  * Destructor.
49  **/
50  virtual ~YQTimeField();
51 
52  /**
53  * Get the current value (the text entered by the user or set from the
54  * outside) of this input field.
55  *
56  * Implemented from YSimpleInputField.
57  **/
58  virtual std::string value();
59 
60  /**
61  * Set the current value (the text entered by the user or set from the
62  * outside) of this input field.
63  *
64  * Implemented from YSimpleInputField.
65  **/
66  virtual void setValue( const std::string & newValue );
67 
68  /**
69  * Set the label (the caption above the input field).
70  *
71  * Reimplemented from YSimpleInputField.
72  **/
73  virtual void setLabel( const std::string & label );
74 
75  /**
76  * Set enabled/disabled state.
77  *
78  * Reimplemented from YWidget.
79  **/
80  virtual void setEnabled( bool enabled );
81 
82  /**
83  * Preferred width of the widget.
84  *
85  * Reimplemented from YWidget.
86  **/
87  virtual int preferredWidth();
88 
89  /**
90  * Preferred height of the widget.
91  *
92  * Reimplemented from YWidget.
93  **/
94  virtual int preferredHeight();
95 
96  /**
97  * Set the new size of the widget.
98  *
99  * Reimplemented from YWidget.
100  **/
101  virtual void setSize( int newWidth, int newHeight );
102 
103  /**
104  * Accept the keyboard focus.
105  *
106  * Reimplemented from YWidget.
107  **/
108  virtual bool setKeyboardFocus();
109 
110 private slots:
111  /**
112  * Time changed from input.
113  *
114  **/
115  void changed ( const QTime &);
116 
117 protected:
118 
119  YQWidgetCaption * _caption;
120  QTimeEdit * _qt_timeEdit;
121 };
122 
123 
124 #endif // YQTimeField_h
virtual void setValue(const std::string &newValue)
Set the current value (the text entered by the user or set from the outside) of this input field...
Definition: YQTimeField.cc:78
virtual bool setKeyboardFocus()
Accept the keyboard focus.
Definition: YQTimeField.cc:118
YQTimeField(YWidget *parent, const std::string &label)
Constructor.
Definition: YQTimeField.cc:39
virtual ~YQTimeField()
Destructor.
Definition: YQTimeField.cc:66
virtual int preferredHeight()
Preferred height of the widget.
Definition: YQTimeField.cc:106
virtual int preferredWidth()
Preferred width of the widget.
Definition: YQTimeField.cc:100
virtual std::string value()
Get the current value (the text entered by the user or set from the outside) of this input field...
Definition: YQTimeField.cc:72
virtual void setSize(int newWidth, int newHeight)
Set the new size of the widget.
Definition: YQTimeField.cc:112
Helper class for captions (labels) above a widget: Takes care of hiding itself when its text is empty...
virtual void setLabel(const std::string &label)
Set the label (the caption above the input field).
Definition: YQTimeField.cc:86
virtual void setEnabled(bool enabled)
Set enabled/disabled state.
Definition: YQTimeField.cc:93