-rw-r--r-- | kmicromail/mainwindow.cpp | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/kmicromail/mainwindow.cpp b/kmicromail/mainwindow.cpp index 24196b4..e020297 100644 --- a/kmicromail/mainwindow.cpp +++ b/kmicromail/mainwindow.cpp | |||
@@ -131,97 +131,122 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) | |||
131 | connect( composeMail, SIGNAL( activated() ), SLOT( slotComposeMail() ) ); | 131 | connect( composeMail, SIGNAL( activated() ), SLOT( slotComposeMail() ) ); |
132 | connect( sendQueued, SIGNAL( activated() ), SLOT( slotSendQueued() ) ); | 132 | connect( sendQueued, SIGNAL( activated() ), SLOT( slotSendQueued() ) ); |
133 | // connect( searchMails, SIGNAL( activated() ), SLOT( slotSearchMails() ) ); | 133 | // connect( searchMails, SIGNAL( activated() ), SLOT( slotSearchMails() ) ); |
134 | connect( editAccounts, SIGNAL( activated() ), SLOT( slotEditAccounts() ) ); | 134 | connect( editAccounts, SIGNAL( activated() ), SLOT( slotEditAccounts() ) ); |
135 | //mailView->setMultiSelection ( true ); | 135 | //mailView->setMultiSelection ( true ); |
136 | mailView->setSelectionMode( QListView::Extended ); | 136 | mailView->setSelectionMode( QListView::Extended ); |
137 | QValueList<int> list; | 137 | QValueList<int> list; |
138 | int fw = 100; | 138 | int fw = 100; |
139 | if ( QApplication::desktop()->width() > 320 ) | 139 | if ( QApplication::desktop()->width() > 320 ) |
140 | fw = 50; | 140 | fw = 50; |
141 | list.append( fw ); | 141 | list.append( fw ); |
142 | list.append( 100 ); | 142 | list.append( 100 ); |
143 | split->setSizes( list ); | 143 | split->setSizes( list ); |
144 | QTimer::singleShot( 1000, this, SLOT( slotAdjustColumns() ) ); | 144 | QTimer::singleShot( 1000, this, SLOT( slotAdjustColumns() ) ); |
145 | mailView->setShowSortIndicator ( true ); | 145 | mailView->setShowSortIndicator ( true ); |
146 | QLabel *spacer = new QLabel( toolBar ); | 146 | QLabel *spacer = new QLabel( toolBar ); |
147 | spacer->setBackgroundMode( QWidget::PaletteButton ); | 147 | spacer->setBackgroundMode( QWidget::PaletteButton ); |
148 | toolBar->setStretchableWidget( spacer ); | 148 | toolBar->setStretchableWidget( spacer ); |
149 | 149 | ||
150 | QAction* closeMail = new QAction(tr("Close"),SmallIcon("exit"), 0, 0, this); | 150 | QAction* closeMail = new QAction(tr("Close"),SmallIcon("exit"), 0, 0, this); |
151 | connect( closeMail, SIGNAL( activated() ), SLOT( close() ) ); | 151 | connect( closeMail, SIGNAL( activated() ), SLOT( close() ) ); |
152 | closeMail->addTo(toolBar); | 152 | closeMail->addTo(toolBar); |
153 | closeMail->addTo(mailMenu); | 153 | closeMail->addTo(mailMenu); |
154 | 154 | ||
155 | 155 | ||
156 | QPopupMenu* helpMenu = new QPopupMenu( menuBar ); | 156 | QPopupMenu* helpMenu = new QPopupMenu( menuBar ); |
157 | menuBar->insertItem( tr( "Help" ), helpMenu ); | 157 | menuBar->insertItem( tr( "Help" ), helpMenu ); |
158 | QAction* li = new QAction(tr("About"), QPixmap(), 0, 0, this); | 158 | QAction* li = new QAction(tr("About"), QPixmap(), 0, 0, this); |
159 | connect( li, SIGNAL( activated() ), SLOT( showAbout()) ); | 159 | connect( li, SIGNAL( activated() ), SLOT( showAbout()) ); |
160 | li->addTo(helpMenu); | 160 | li->addTo(helpMenu); |
161 | li = new QAction(tr("Licence"),QPixmap(), 0, 0, this); | 161 | li = new QAction(tr("Licence"),QPixmap(), 0, 0, this); |
162 | connect( li, SIGNAL( activated() ), SLOT( showLicence()) ); | 162 | connect( li, SIGNAL( activated() ), SLOT( showLicence()) ); |
163 | li->addTo(helpMenu); | 163 | li->addTo(helpMenu); |
164 | li = new QAction(tr("LibEtPan Licence"), QPixmap(), 0, 0, this); | 164 | li = new QAction(tr("LibEtPan Licence"), QPixmap(), 0, 0, this); |
165 | connect( li, SIGNAL( activated() ), SLOT( showEtpanLicence()) ); | 165 | connect( li, SIGNAL( activated() ), SLOT( showEtpanLicence()) ); |
166 | li->addTo(helpMenu); | 166 | li->addTo(helpMenu); |
167 | } | 167 | } |
168 | 168 | ||
169 | MainWindow::~MainWindow() | 169 | MainWindow::~MainWindow() |
170 | { | 170 | { |
171 | } | 171 | } |
172 | 172 | ||
173 | void MainWindow::showLicence() | 173 | void MainWindow::showLicence() |
174 | { | 174 | { |
175 | KApplication::showLicence(); | 175 | KApplication::showLicence(); |
176 | } | 176 | } |
177 | void MainWindow::showAbout() | 177 | void MainWindow::showAbout() |
178 | { | 178 | { |
179 | qDebug("MainWindow::showAbout() "); | 179 | QString version; |
180 | #include <../version> | ||
181 | |||
182 | QString cap = "About KOpieMail/Pi"; | ||
183 | QString text =i18n("KOpieMail/Platform-independent\n") + | ||
184 | "(OM/Pi) " + version + " - " | ||
185 | |||
186 | #ifdef DESKTOP_VERSION | ||
187 | "Desktop Edition\n" | ||
188 | #else | ||
189 | "PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n" | ||
190 | #endif | ||
191 | "www.pi-sync.net\n\n" | ||
192 | |||
193 | |||
194 | |||
195 | "Copyright (c) 2004 Lutz Rogowski <lutz@pi-sync.net>\n" | ||
196 | "KOpieMail/Pi is based on Opie Mail\n" | ||
197 | "Copyright (c) Rajko Albrecht and the Opie team\n" | ||
198 | "KOpieMail/Pi is licensed under the GPL\n" | ||
199 | "\n" | ||
200 | "KOpieMail/Pi uses LibEtPan - a mail stuff library\n" | ||
201 | "Copyright (C) 2001, 2002 - DINH Viet Hoa\n" | ||
202 | "libEtPan has its own licence - see LibEtPan licence\n"; | ||
203 | |||
204 | KApplication::showText( cap, text ); | ||
180 | } | 205 | } |
181 | void MainWindow::showEtpanLicence() | 206 | void MainWindow::showEtpanLicence() |
182 | { | 207 | { |
183 | KApplication::showFile( "LibEtPan licence", "kdepim/kmicromail/COPYRIGHTlibetpan" ); | 208 | KApplication::showFile( "LibEtPan licence", "kdepim/kmicromail/COPYRIGHTlibetpan" ); |
184 | 209 | ||
185 | } | 210 | } |
186 | void MainWindow::appMessage(const QCString &, const QByteArray &) | 211 | void MainWindow::appMessage(const QCString &, const QByteArray &) |
187 | { | 212 | { |
188 | qDebug("appMessage implemented by subclass"); | 213 | qDebug("appMessage implemented by subclass"); |
189 | } | 214 | } |
190 | 215 | ||
191 | void MainWindow::slotAdjustLayout() { | 216 | void MainWindow::slotAdjustLayout() { |
192 | 217 | ||
193 | /* | 218 | /* |
194 | QWidget *d = QApplication::desktop(); | 219 | QWidget *d = QApplication::desktop(); |
195 | 220 | ||
196 | if ( d->width() < d->height() ) { | 221 | if ( d->width() < d->height() ) { |
197 | layout->setDirection( QBoxLayout::TopToBottom ); | 222 | layout->setDirection( QBoxLayout::TopToBottom ); |
198 | } else { | 223 | } else { |
199 | layout->setDirection( QBoxLayout::LeftToRight ); | 224 | layout->setDirection( QBoxLayout::LeftToRight ); |
200 | } | 225 | } |
201 | */ | 226 | */ |
202 | } | 227 | } |
203 | 228 | ||
204 | void MainWindow::slotAdjustColumns() | 229 | void MainWindow::slotAdjustColumns() |
205 | { | 230 | { |
206 | bool hidden = folderView->isHidden(); | 231 | bool hidden = folderView->isHidden(); |
207 | if ( hidden ) folderView->show(); | 232 | if ( hidden ) folderView->show(); |
208 | folderView->setColumnWidth( 0, folderView->visibleWidth() ); | 233 | folderView->setColumnWidth( 0, folderView->visibleWidth() ); |
209 | if ( hidden ) folderView->hide(); | 234 | if ( hidden ) folderView->hide(); |
210 | 235 | ||
211 | mailView->setColumnWidth( 0, 10 ); | 236 | mailView->setColumnWidth( 0, 10 ); |
212 | mailView->setColumnWidth( 1, 100 ); | 237 | mailView->setColumnWidth( 1, 100 ); |
213 | mailView->setColumnWidth( 2, 100 ); | 238 | mailView->setColumnWidth( 2, 100 ); |
214 | mailView->setColumnWidth( 3, 50 ); | 239 | mailView->setColumnWidth( 3, 50 ); |
215 | mailView->setColumnWidth( 4, 120 ); | 240 | mailView->setColumnWidth( 4, 120 ); |
216 | } | 241 | } |
217 | 242 | ||
218 | void MainWindow::slotEditSettings() | 243 | void MainWindow::slotEditSettings() |
219 | { | 244 | { |
220 | } | 245 | } |
221 | 246 | ||
222 | void MainWindow::slotShowFolders( bool ) | 247 | void MainWindow::slotShowFolders( bool ) |
223 | { | 248 | { |
224 | qDebug("not implemented: "); | 249 | qDebug("not implemented: "); |
225 | } | 250 | } |
226 | 251 | ||
227 | void MainWindow::refreshMailView(const QValueList<RecMailP>&) | 252 | void MainWindow::refreshMailView(const QValueList<RecMailP>&) |