summaryrefslogtreecommitdiff
authordrw <drw>2004-03-01 20:07:29 (UTC)
committer drw <drw>2004-03-01 20:07:29 (UTC)
commit26ca9b988972d33d8f911000a39c1e6fe2ce2ec3 (patch) (unidiff)
treebf277061a0adcead60cd9570c6e8c4c21e8aa1cf
parent6bab4a28785c4ab5b0f0707c8c8db953e399cac8 (diff)
downloadopie-26ca9b988972d33d8f911000a39c1e6fe2ce2ec3.zip
opie-26ca9b988972d33d8f911000a39c1e6fe2ce2ec3.tar.gz
opie-26ca9b988972d33d8f911000a39c1e6fe2ce2ec3.tar.bz2
Still need qfile, qtextstream includes
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/memoryapplet/swapfile.cpp82
1 files changed, 42 insertions, 40 deletions
diff --git a/noncore/applets/memoryapplet/swapfile.cpp b/noncore/applets/memoryapplet/swapfile.cpp
index 7483592..04da8bb 100644
--- a/noncore/applets/memoryapplet/swapfile.cpp
+++ b/noncore/applets/memoryapplet/swapfile.cpp
@@ -21,15 +21,17 @@
21#include "swapfile.h" 21#include "swapfile.h"
22 22
23#include <qfile.h>
24#include <qtextstream.h>
23#include <qlabel.h> 25#include <qlabel.h>
24#include <qtimer.h> 26#include <qtimer.h>
25#include <qlayout.h> 27#include <qlayout.h>
26#include <qpushbutton.h> 28#include <qpushbutton.h>
27#include <qhbuttongroup.h> 29#include <qhbuttongroup.h>
28#include <qradiobutton.h> 30#include <qradiobutton.h>
29#include <qlineedit.h> 31#include <qlineedit.h>
30#include <qprogressbar.h> 32#include <qprogressbar.h>
31#include <qcombobox.h> 33#include <qcombobox.h>
32#include <qvgroupbox.h> 34#include <qvgroupbox.h>
33#include <qhbox.h> 35#include <qhbox.h>
34#include <qmessagebox.h> 36#include <qmessagebox.h>
35#include <stdio.h> 37#include <stdio.h>
@@ -44,6 +46,6 @@
44#include <sys/vfs.h> 46#include <sys/vfs.h>
45#include <mntent.h> 47#include <mntent.h>
46#include <unistd.h> 48#include <unistd.h>
47#include <sys/types.h> 49#include <sys/types.h>
48 50
49Swapfile::Swapfile( QWidget *parent, const char *name, WFlags f ) 51Swapfile::Swapfile( QWidget *parent, const char *name, WFlags f )
@@ -58,5 +60,5 @@ Swapfile::Swapfile( QWidget *parent, const char *name, WFlags f )
58 cfsdRBG->setRadioButtonExclusive(true); 60 cfsdRBG->setRadioButtonExclusive(true);
59 vb->addWidget(cfsdRBG); 61 vb->addWidget(cfsdRBG);
60 62
61 ramRB = new QRadioButton(tr("RAM"), cfsdRBG); 63 ramRB = new QRadioButton(tr("RAM"), cfsdRBG);
62 cfRB = new QRadioButton(tr("CF Card"), cfsdRBG); 64 cfRB = new QRadioButton(tr("CF Card"), cfsdRBG);
@@ -107,10 +109,10 @@ Swapfile::Swapfile( QWidget *parent, const char *name, WFlags f )
107 cfRB->setEnabled(FALSE); 109 cfRB->setEnabled(FALSE);
108 sdRB->setEnabled(FALSE); 110 sdRB->setEnabled(FALSE);
109 111
110 QCopChannel *pcmciaChannel = new QCopChannel("QPE/Card", this); 112 QCopChannel *pcmciaChannel = new QCopChannel("QPE/Card", this);
111 connect(pcmciaChannel, SIGNAL(received(const QCString &, const QByteArray &)), this, SLOT(cardnotify(const QCString &, const QByteArray &))); 113 connect(pcmciaChannel, SIGNAL(received(const QCString &, const QByteArray &)), this, SLOT(cardnotify(const QCString &, const QByteArray &)));
112 QCopChannel *sdChannel = new QCopChannel("QPE/Card", this); 114 QCopChannel *sdChannel = new QCopChannel("QPE/Card", this);
113 connect(sdChannel, SIGNAL(received(const QCString &, const QByteArray &)), this, SLOT(cardnotify(const QCString &, const QByteArray &))); 115 connect(sdChannel, SIGNAL(received(const QCString &, const QByteArray &)), this, SLOT(cardnotify(const QCString &, const QByteArray &)));
114 116
115 cardInPcmcia0 = FALSE; 117 cardInPcmcia0 = FALSE;
116 cardInPcmcia1 = FALSE; 118 cardInPcmcia1 = FALSE;
@@ -134,9 +136,9 @@ Swapfile::~Swapfile()
134void Swapfile::cardnotify(const QCString & msg, const QByteArray &) 136void Swapfile::cardnotify(const QCString & msg, const QByteArray &)
135{ 137{
136 if (msg == "stabChanged()") 138 if (msg == "stabChanged()")
137 { 139 {
138 getStatusPcmcia(); 140 getStatusPcmcia();
139 } 141 }
140 else if (msg == "mtabChanged()") 142 else if (msg == "mtabChanged()")
141 { 143 {
142 getStatusSd(); 144 getStatusSd();
@@ -194,8 +196,8 @@ void Swapfile::getStatusPcmcia()
194 if (cardWas0 != cardInPcmcia0) { 196 if (cardWas0 != cardInPcmcia0) {
195 if (cardInPcmcia0) { 197 if (cardInPcmcia0) {
196 cfRB->setEnabled(TRUE); 198 cfRB->setEnabled(TRUE);
197 } else { 199 } else {
198 cfRB->setChecked(FALSE); 200 cfRB->setChecked(FALSE);
199 cfRB->setEnabled(FALSE); 201 cfRB->setEnabled(FALSE);
200 } 202 }
201 } 203 }
@@ -203,8 +205,8 @@ void Swapfile::getStatusPcmcia()
203 if (cardWas1 != cardInPcmcia1) { 205 if (cardWas1 != cardInPcmcia1) {
204 if (cardInPcmcia1) { 206 if (cardInPcmcia1) {
205 cfRB->setEnabled(TRUE); 207 cfRB->setEnabled(TRUE);
206 } else { 208 } else {
207 cfRB->setChecked(FALSE); 209 cfRB->setChecked(FALSE);
208 cfRB->setEnabled(FALSE); 210 cfRB->setEnabled(FALSE);
209 } 211 }
210 } 212 }
@@ -246,8 +248,8 @@ void Swapfile::getStatusSd()
246 QString what = QString::null; 248 QString what = QString::null;
247 if (cardInSd) { 249 if (cardInSd) {
248 sdRB->setEnabled(TRUE); 250 sdRB->setEnabled(TRUE);
249 } else { 251 } else {
250 sdRB->setChecked(FALSE); 252 sdRB->setChecked(FALSE);
251 sdRB->setEnabled(FALSE); 253 sdRB->setEnabled(FALSE);
252 } 254 }
253 } 255 }
@@ -288,5 +290,5 @@ void Swapfile::swapoff()
288{ 290{
289 char swapcmd[128] ="swapoff "; 291 char swapcmd[128] ="swapoff ";
290 if (Swapfile::cfRB->isChecked() == TRUE) 292 if (Swapfile::cfRB->isChecked() == TRUE)
291 Swapfile::cfsdchecked(); 293 Swapfile::cfsdchecked();
292 strcat(swapcmd,swapPath1->text()); 294 strcat(swapcmd,swapPath1->text());
@@ -308,5 +310,5 @@ void Swapfile::cfsdchecked()
308 /* Swapfile::swapPath->clear();*/ 310 /* Swapfile::swapPath->clear();*/
309 Swapfile::swapPath1->clear(); 311 Swapfile::swapPath1->clear();
310 if (Swapfile::ramRB->isChecked() == TRUE) 312 if (Swapfile::ramRB->isChecked() == TRUE)
311 { 313 {
312 Swapfile::swapPath1->insert("/home/swapfile"); 314 Swapfile::swapPath1->insert("/home/swapfile");
@@ -324,8 +326,8 @@ void Swapfile::cfsdchecked()
324 326
325void Swapfile::makeswapfile() 327void Swapfile::makeswapfile()
326 { 328{
327 int i = swapSize->currentItem(); 329 int i = swapSize->currentItem();
328 330
329 mkswapProgress->setProgress(1); 331 mkswapProgress->setProgress(1);
330 switch ( i ) { 332 switch ( i ) {
331 case 0: rc=exec(QString("dd if=/dev/zero of=%1 bs=1k count=2048").arg(swapPath1->text())); 333 case 0: rc=exec(QString("dd if=/dev/zero of=%1 bs=1k count=2048").arg(swapPath1->text()));
@@ -337,18 +339,18 @@ void Swapfile::makeswapfile()
337 case 3: rc=exec(QString("dd if=/dev/zero of=%1 bs=1k count=8192").arg(swapPath1->text())); 339 case 3: rc=exec(QString("dd if=/dev/zero of=%1 bs=1k count=8192").arg(swapPath1->text()));
338 break; 340 break;
339 } 341 }
340 if (rc != 0) { 342 if (rc != 0) {
341 setStatusMessage(tr("Failed to create swapfile."), true); 343 setStatusMessage(tr("Failed to create swapfile."), true);
342 } 344 }
343 345
344 mkswapProgress->setProgress(2); 346 mkswapProgress->setProgress(2);
345 rc=exec(QString("mkswap %1").arg(swapPath1->text())); 347 rc=exec(QString("mkswap %1").arg(swapPath1->text()));
346 if (rc != 0) { 348 if (rc != 0) {
347 setStatusMessage(tr("Failed to initialize swapfile."), true); 349 setStatusMessage(tr("Failed to initialize swapfile."), true);
348 } 350 }
349 mkswapProgress->setProgress(3); 351 mkswapProgress->setProgress(3);
350 mkswapProgress->reset(); 352 mkswapProgress->reset();
351 setStatusMessage(tr("Swapfile created.")); 353 setStatusMessage(tr("Swapfile created."));
352 } 354}
353 355
354void Swapfile::removeswapfile() 356void Swapfile::removeswapfile()
@@ -375,5 +377,5 @@ void Swapfile::status()
375 } 377 }
376 fclose(fp); 378 fclose(fp);
377 379
378 ramRB->setChecked(FALSE); 380 ramRB->setChecked(FALSE);
379 cfRB->setChecked(FALSE); 381 cfRB->setChecked(FALSE);
@@ -382,5 +384,5 @@ void Swapfile::status()
382 i=strcmp(swapfile, "/home/swapfile"); 384 i=strcmp(swapfile, "/home/swapfile");
383 if ( i == 0 ) { 385 if ( i == 0 ) {
384 ramRB->setChecked(TRUE); 386 ramRB->setChecked(TRUE);
385 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */ 387 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */
386 setStatusMessage(tr("Swapfile activated.")); 388 setStatusMessage(tr("Swapfile activated."));
@@ -388,5 +390,5 @@ void Swapfile::status()
388 i=strcmp(swapfile, "/usr/mnt.rom/cf/swapfile"); 390 i=strcmp(swapfile, "/usr/mnt.rom/cf/swapfile");
389 if ( i == 0 ) { 391 if ( i == 0 ) {
390 cfRB->setChecked(TRUE); 392 cfRB->setChecked(TRUE);
391 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */ 393 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */
392 setStatusMessage(tr("Swapfile activated.")); 394 setStatusMessage(tr("Swapfile activated."));
@@ -394,5 +396,5 @@ void Swapfile::status()
394 i=strcmp(swapfile, "/mnt/cf/swapfile"); 396 i=strcmp(swapfile, "/mnt/cf/swapfile");
395 if ( i == 0 ) { 397 if ( i == 0 ) {
396 cfRB->setChecked(TRUE); 398 cfRB->setChecked(TRUE);
397 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */ 399 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */
398 setStatusMessage(tr("Swapfile activated.")); 400 setStatusMessage(tr("Swapfile activated."));
@@ -400,5 +402,5 @@ void Swapfile::status()
400 i=strcmp(swapfile, "/usr/mnt.rom/card/swapfile"); 402 i=strcmp(swapfile, "/usr/mnt.rom/card/swapfile");
401 if ( i == 0 ) { 403 if ( i == 0 ) {
402 sdRB->setChecked(TRUE); 404 sdRB->setChecked(TRUE);
403 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */ 405 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */
404 setStatusMessage(tr("Swapfile activated.")); 406 setStatusMessage(tr("Swapfile activated."));
@@ -406,5 +408,5 @@ void Swapfile::status()
406 i=strcmp(swapfile, "/mnt/card/swapfile"); 408 i=strcmp(swapfile, "/mnt/card/swapfile");
407 if ( i == 0 ) { 409 if ( i == 0 ) {
408 sdRB->setChecked(TRUE); 410 sdRB->setChecked(TRUE);
409 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */ 411 /* QMessageBox::information(this, "Information", "Swapfile is active!"); */
410 setStatusMessage(tr("Swapfile activated.")); 412 setStatusMessage(tr("Swapfile activated."));
@@ -412,6 +414,6 @@ void Swapfile::status()
412 414
413 Swapfile::cfsdchecked(); 415 Swapfile::cfsdchecked();
414 416
415 417
416 swapsize /=1000; 418 swapsize /=1000;
417 419
@@ -425,6 +427,6 @@ void Swapfile::status()
425 case 8: swapSize->setCurrentItem(3); 427 case 8: swapSize->setCurrentItem(3);
426 break; 428 break;
427 } 429 }
428 430
429 431
430} 432}