author | zautrix <zautrix> | 2005-03-21 09:40:04 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-21 09:40:04 (UTC) |
commit | fd372d97084c401aacb999e89f8bdd94056a3b59 (patch) (unidiff) | |
tree | 8443519b847537711d6b423ef903ca132410a682 | |
parent | cd02f3880c5567a4bbb7b56e7034787005df7da8 (diff) | |
download | kdepimpi-fd372d97084c401aacb999e89f8bdd94056a3b59.zip kdepimpi-fd372d97084c401aacb999e89f8bdd94056a3b59.tar.gz kdepimpi-fd372d97084c401aacb999e89f8bdd94056a3b59.tar.bz2 |
layout fix
-rw-r--r-- | korganizer/navigatorbar.cpp | 22 | ||||
-rw-r--r-- | korganizer/navigatorbar.h | 4 |
2 files changed, 26 insertions, 0 deletions
diff --git a/korganizer/navigatorbar.cpp b/korganizer/navigatorbar.cpp index 4a51bba..e4abbf7 100644 --- a/korganizer/navigatorbar.cpp +++ b/korganizer/navigatorbar.cpp | |||
@@ -136,76 +136,98 @@ NavigatorBar::NavigatorBar( const QDate & date, QWidget *parent, const char *nam | |||
136 | ctrlLayout->addWidget( mNextMonth, 3 ); | 136 | ctrlLayout->addWidget( mNextMonth, 3 ); |
137 | ctrlLayout->addWidget( mNextYear, 3 ); | 137 | ctrlLayout->addWidget( mNextYear, 3 ); |
138 | 138 | ||
139 | connect( mPrevYear, SIGNAL( clicked() ), SIGNAL( goPrevYear() ) ); | 139 | connect( mPrevYear, SIGNAL( clicked() ), SIGNAL( goPrevYear() ) ); |
140 | connect( mPrevMonth, SIGNAL( clicked() ), SIGNAL( goPrevMonth() ) ); | 140 | connect( mPrevMonth, SIGNAL( clicked() ), SIGNAL( goPrevMonth() ) ); |
141 | connect( mNextMonth, SIGNAL( clicked() ), SIGNAL( goNextMonth() ) ); | 141 | connect( mNextMonth, SIGNAL( clicked() ), SIGNAL( goNextMonth() ) ); |
142 | connect( mPrevWeek, SIGNAL( clicked() ), SIGNAL( goPrevWeek() ) ); | 142 | connect( mPrevWeek, SIGNAL( clicked() ), SIGNAL( goPrevWeek() ) ); |
143 | connect( mNextWeek, SIGNAL( clicked() ), SIGNAL( goNextWeek() ) ); | 143 | connect( mNextWeek, SIGNAL( clicked() ), SIGNAL( goNextWeek() ) ); |
144 | connect( mNextYear, SIGNAL( clicked() ), SIGNAL( goNextYear() ) ); | 144 | connect( mNextYear, SIGNAL( clicked() ), SIGNAL( goNextYear() ) ); |
145 | connect( mSelectMonth, SIGNAL( clicked() ),SLOT( selectMonth() ) ); | 145 | connect( mSelectMonth, SIGNAL( clicked() ),SLOT( selectMonth() ) ); |
146 | mPrevYear->setFocusPolicy(NoFocus); | 146 | mPrevYear->setFocusPolicy(NoFocus); |
147 | mPrevMonth->setFocusPolicy(NoFocus); | 147 | mPrevMonth->setFocusPolicy(NoFocus); |
148 | mNextMonth->setFocusPolicy(NoFocus); | 148 | mNextMonth->setFocusPolicy(NoFocus); |
149 | mPrevWeek->setFocusPolicy(NoFocus); | 149 | mPrevWeek->setFocusPolicy(NoFocus); |
150 | mNextWeek->setFocusPolicy(NoFocus); | 150 | mNextWeek->setFocusPolicy(NoFocus); |
151 | mNextYear->setFocusPolicy(NoFocus); | 151 | mNextYear->setFocusPolicy(NoFocus); |
152 | mSelectMonth->setFocusPolicy(NoFocus); | 152 | mSelectMonth->setFocusPolicy(NoFocus); |
153 | setSizePolicy( QSizePolicy ( QSizePolicy::Expanding ,QSizePolicy::Fixed ) ); | 153 | setSizePolicy( QSizePolicy ( QSizePolicy::Expanding ,QSizePolicy::Fixed ) ); |
154 | 154 | ||
155 | } | 155 | } |
156 | 156 | ||
157 | NavigatorBar::~NavigatorBar() | 157 | NavigatorBar::~NavigatorBar() |
158 | { | 158 | { |
159 | } | 159 | } |
160 | QSize NavigatorBar::sizeHint() const | ||
161 | { | ||
162 | int wid = mCurrentMinWid ; | ||
163 | if ( mPrevYear->isVisible() ) | ||
164 | wid += mCurrentButtonMinWid; | ||
165 | if ( mPrevMonth->isVisible() ) | ||
166 | wid += mCurrentButtonMinWid; | ||
167 | if ( mPrevWeek->isVisible() ) | ||
168 | wid += mCurrentButtonMinWid; | ||
169 | if ( mNextMonth->isVisible() ) | ||
170 | wid += mCurrentButtonMinWid; | ||
171 | if ( mNextWeek->isVisible() ) | ||
172 | wid += mCurrentButtonMinWid; | ||
173 | if ( mNextYear->isVisible() ) | ||
174 | wid += mCurrentButtonMinWid; | ||
175 | //qDebug("ret %d %d ", wid, mCurrentHei); | ||
176 | int add = 2; | ||
177 | return QSize ( wid+add, mCurrentHei+add ); | ||
178 | } | ||
160 | void NavigatorBar::resetFont ( QFont fo ) | 179 | void NavigatorBar::resetFont ( QFont fo ) |
161 | { | 180 | { |
162 | 181 | ||
163 | QFont tfont = fo; | 182 | QFont tfont = fo; |
164 | if ( QApplication::desktop()->width() >= 480 ) | 183 | if ( QApplication::desktop()->width() >= 480 ) |
165 | tfont.setPointSize(tfont.pointSize()+2); | 184 | tfont.setPointSize(tfont.pointSize()+2); |
166 | tfont.setBold(true); | 185 | tfont.setBold(true); |
167 | 186 | ||
168 | mSelectMonth->setFont( tfont ); | 187 | mSelectMonth->setFont( tfont ); |
169 | // Set minimum width to width of widest month name label | 188 | // Set minimum width to width of widest month name label |
170 | int i; | 189 | int i; |
171 | int maxwidth = 0; | 190 | int maxwidth = 0; |
172 | QFontMetrics fm ( mSelectMonth->font() ); | 191 | QFontMetrics fm ( mSelectMonth->font() ); |
173 | int width = fm.width("September '00" ); | 192 | int width = fm.width("September '00" ); |
174 | maxwidth = width+2; | 193 | maxwidth = width+2; |
175 | int size = fm.height()+2; | 194 | int size = fm.height()+2; |
176 | if ( QApplication::desktop()->width() >= 480 ) { | 195 | if ( QApplication::desktop()->width() >= 480 ) { |
177 | size += 6; | 196 | size += 6; |
178 | maxwidth+= 6; | 197 | maxwidth+= 6; |
179 | } | 198 | } |
180 | mSelectMonth->setMinimumWidth( maxwidth ); | 199 | mSelectMonth->setMinimumWidth( maxwidth ); |
181 | mSelectMonth->setFixedHeight( size ); | 200 | mSelectMonth->setFixedHeight( size ); |
182 | mPrevYear->setFixedHeight( size ); | 201 | mPrevYear->setFixedHeight( size ); |
183 | mPrevMonth->setFixedHeight( size ); | 202 | mPrevMonth->setFixedHeight( size ); |
184 | mPrevWeek->setFixedHeight( size ); | 203 | mPrevWeek->setFixedHeight( size ); |
185 | mNextMonth->setFixedHeight( size ); | 204 | mNextMonth->setFixedHeight( size ); |
186 | mNextWeek->setFixedHeight( size ); | 205 | mNextWeek->setFixedHeight( size ); |
187 | mNextYear->setFixedHeight ( size ); | 206 | mNextYear->setFixedHeight ( size ); |
207 | mCurrentHei = size; | ||
208 | mCurrentMinWid = maxwidth; | ||
209 | mCurrentButtonMinWid = mPrevYear->sizeHint().width()+2; | ||
188 | } | 210 | } |
189 | 211 | ||
190 | void NavigatorBar::showButtons( bool left, bool right ) | 212 | void NavigatorBar::showButtons( bool left, bool right ) |
191 | { | 213 | { |
192 | if ( left ) { | 214 | if ( left ) { |
193 | mPrevYear->show(); | 215 | mPrevYear->show(); |
194 | mPrevMonth->show(); | 216 | mPrevMonth->show(); |
195 | } else { | 217 | } else { |
196 | mPrevYear->hide(); | 218 | mPrevYear->hide(); |
197 | mPrevMonth->hide(); | 219 | mPrevMonth->hide(); |
198 | } | 220 | } |
199 | 221 | ||
200 | if ( right ) { | 222 | if ( right ) { |
201 | mNextYear->show(); | 223 | mNextYear->show(); |
202 | mNextMonth->show(); | 224 | mNextMonth->show(); |
203 | } else { | 225 | } else { |
204 | mNextYear->hide(); | 226 | mNextYear->hide(); |
205 | mNextMonth->hide(); | 227 | mNextMonth->hide(); |
206 | } | 228 | } |
207 | if ( !left && !right ) { | 229 | if ( !left && !right ) { |
208 | //mSelectMonth->setMaximumWidth( 1024 ); | 230 | //mSelectMonth->setMaximumWidth( 1024 ); |
209 | mSelectMonth->setSizePolicy( QSizePolicy ( QSizePolicy::Expanding ,QSizePolicy::Fixed ) ); | 231 | mSelectMonth->setSizePolicy( QSizePolicy ( QSizePolicy::Expanding ,QSizePolicy::Fixed ) ); |
210 | } | 232 | } |
211 | } | 233 | } |
diff --git a/korganizer/navigatorbar.h b/korganizer/navigatorbar.h index 0b2f60b..5d5aff4 100644 --- a/korganizer/navigatorbar.h +++ b/korganizer/navigatorbar.h | |||
@@ -19,53 +19,57 @@ | |||
19 | 19 | ||
20 | As a special exception, permission is given to link this program | 20 | As a special exception, permission is given to link this program |
21 | with any edition of Qt, and distribute the resulting executable, | 21 | with any edition of Qt, and distribute the resulting executable, |
22 | without including the source code for Qt in the source distribution. | 22 | without including the source code for Qt in the source distribution. |
23 | */ | 23 | */ |
24 | #ifndef NAVIGATORBAR_H | 24 | #ifndef NAVIGATORBAR_H |
25 | #define NAVIGATORBAR_H | 25 | #define NAVIGATORBAR_H |
26 | 26 | ||
27 | #include <libkcal/incidencebase.h> | 27 | #include <libkcal/incidencebase.h> |
28 | 28 | ||
29 | #include <qwidget.h> | 29 | #include <qwidget.h> |
30 | 30 | ||
31 | class QPushButton; | 31 | class QPushButton; |
32 | class QFrame; | 32 | class QFrame; |
33 | class QLabel; | 33 | class QLabel; |
34 | 34 | ||
35 | class NavigatorBar: public QWidget | 35 | class NavigatorBar: public QWidget |
36 | { | 36 | { |
37 | Q_OBJECT | 37 | Q_OBJECT |
38 | public: | 38 | public: |
39 | NavigatorBar( const QDate & date, QWidget *parent = 0, const char *name = 0 ); | 39 | NavigatorBar( const QDate & date, QWidget *parent = 0, const char *name = 0 ); |
40 | ~NavigatorBar(); | 40 | ~NavigatorBar(); |
41 | void showButtons( bool left, bool right ); | 41 | void showButtons( bool left, bool right ); |
42 | void resetFont ( QFont fo ); | 42 | void resetFont ( QFont fo ); |
43 | QSize sizeHint() const; | ||
43 | 44 | ||
44 | public slots: | 45 | public slots: |
45 | void selectDates( const KCal::DateList & ); | 46 | void selectDates( const KCal::DateList & ); |
46 | void selectMonth(); | 47 | void selectMonth(); |
47 | 48 | ||
48 | signals: | 49 | signals: |
49 | void goNextMonth(); | 50 | void goNextMonth(); |
50 | void goPrevMonth(); | 51 | void goPrevMonth(); |
51 | void goNextWeek(); | 52 | void goNextWeek(); |
52 | void goPrevWeek(); | 53 | void goPrevWeek(); |
53 | void goNextYear(); | 54 | void goNextYear(); |
54 | void goPrevYear(); | 55 | void goPrevYear(); |
55 | void monthSelected( int ); | 56 | void monthSelected( int ); |
56 | 57 | ||
57 | private: | 58 | private: |
59 | int mCurrentHei; | ||
60 | int mCurrentMinWid; | ||
61 | int mCurrentButtonMinWid; | ||
58 | QFrame *mCtrlFrame; | 62 | QFrame *mCtrlFrame; |
59 | 63 | ||
60 | QPushButton *mPrevYear; | 64 | QPushButton *mPrevYear; |
61 | QPushButton *mPrevMonth; | 65 | QPushButton *mPrevMonth; |
62 | QPushButton *mNextMonth; | 66 | QPushButton *mNextMonth; |
63 | QPushButton *mPrevWeek; | 67 | QPushButton *mPrevWeek; |
64 | QPushButton *mNextWeek; | 68 | QPushButton *mNextWeek; |
65 | QPushButton *mNextYear; | 69 | QPushButton *mNextYear; |
66 | QPushButton *mSelectMonth; | 70 | QPushButton *mSelectMonth; |
67 | 71 | ||
68 | //QLabel *mDateLabel; | 72 | //QLabel *mDateLabel; |
69 | }; | 73 | }; |
70 | 74 | ||
71 | #endif | 75 | #endif |