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 | |||
@@ -148,24 +148,43 @@ NavigatorBar::NavigatorBar( const QDate & date, QWidget *parent, const char *nam | |||
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; |
@@ -176,24 +195,27 @@ void NavigatorBar::resetFont ( QFont fo ) | |||
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 | ||
diff --git a/korganizer/navigatorbar.h b/korganizer/navigatorbar.h index 0b2f60b..5d5aff4 100644 --- a/korganizer/navigatorbar.h +++ b/korganizer/navigatorbar.h | |||
@@ -31,39 +31,43 @@ | |||
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 | }; |