summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/zsafe/zsafe.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/apps/zsafe/zsafe.cpp b/noncore/apps/zsafe/zsafe.cpp
index e86b3d2..9341425 100644
--- a/noncore/apps/zsafe/zsafe.cpp
+++ b/noncore/apps/zsafe/zsafe.cpp
@@ -2557,577 +2557,581 @@ void ZSafe::addCategory()
2557 dialog = categoryDialog; 2557 dialog = categoryDialog;
2558 connect( dialog->CategoryField, 2558 connect( dialog->CategoryField,
2559 SIGNAL( activated ( const QString &)), 2559 SIGNAL( activated ( const QString &)),
2560 this, SLOT( categoryFieldActivated( const QString & ) ) ); 2560 this, SLOT( categoryFieldActivated( const QString & ) ) );
2561 initIcons = true; 2561 initIcons = true;
2562 } 2562 }
2563 2563
2564#ifdef DESKTOP 2564#ifdef DESKTOP
2565#ifndef WIN32 2565#ifndef WIN32
2566 QStringList list = conf->entryList( APP_KEY+"/fieldDefs" ); 2566 QStringList list = conf->entryList( APP_KEY+"/fieldDefs" );
2567#else 2567#else
2568 // read all categories from the config file and store 2568 // read all categories from the config file and store
2569 // into a list 2569 // into a list
2570 QFile f (cfgFile); 2570 QFile f (cfgFile);
2571 QStringList list; 2571 QStringList list;
2572 if ( f.open(IO_ReadOnly) ) { // file opened successfully 2572 if ( f.open(IO_ReadOnly) ) { // file opened successfully
2573 QTextStream t( &f ); // use a text stream 2573 QTextStream t( &f ); // use a text stream
2574 QString s; 2574 QString s;
2575 int n = 1; 2575 int n = 1;
2576 while ( !t.eof() ) { // until end of file... 2576 while ( !t.eof() ) { // until end of file...
2577 s = t.readLine(); // line of text excluding '\n' 2577 s = t.readLine(); // line of text excluding '\n'
2578 list.append(s); 2578 list.append(s);
2579 } 2579 }
2580 f.close(); 2580 f.close();
2581 } 2581 }
2582#endif 2582#endif
2583#else 2583#else
2584 // read all categories from the config file and store 2584 // read all categories from the config file and store
2585 // into a list 2585 // into a list
2586 QFile f (cfgFile); 2586 QFile f (cfgFile);
2587 QStringList list; 2587 QStringList list;
2588 if ( f.open(IO_ReadOnly) ) { // file opened successfully 2588 if ( f.open(IO_ReadOnly) ) { // file opened successfully
2589 QTextStream t( &f ); // use a text stream 2589 QTextStream t( &f ); // use a text stream
2590 QString s; 2590 QString s;
2591 while ( !t.eof() ) { // until end of file... 2591 while ( !t.eof() ) { // until end of file...
2592 s = t.readLine(); // line of text excluding '\n' 2592 s = t.readLine(); // line of text excluding '\n'
2593 list.append(s); 2593 list.append(s);
2594 } 2594 }
2595 f.close(); 2595 f.close();
2596 } 2596 }
2597#endif 2597#endif
2598 QStringList::Iterator it = list.begin(); 2598 QStringList::Iterator it = list.begin();
2599 QString categ; 2599 QString categ;
2600 QString firstCategory; 2600 QString firstCategory;
2601 dialog->CategoryField->clear(); // remove all items 2601 dialog->CategoryField->clear(); // remove all items
2602 while( it != list.end() ) 2602 while( it != list.end() )
2603 { 2603 {
2604 QString *cat = new QString (*it); 2604 QString *cat = new QString (*it);
2605 if (cat->contains("-field1", FALSE)) 2605 if (cat->contains("-field1", FALSE))
2606 { 2606 {
2607#ifdef DESKTOP 2607#ifdef DESKTOP
2608#ifndef WIN32 2608#ifndef WIN32
2609 categ = cat->section ("-field1", 0, 0); 2609 categ = cat->section ("-field1", 0, 0);
2610#else 2610#else
2611 int pos = cat->find ("-field1"); 2611 int pos = cat->find ("-field1");
2612 categ = cat->left (pos); 2612 categ = cat->left (pos);
2613#endif 2613#endif
2614#else 2614#else
2615 int pos = cat->find ("-field1"); 2615 int pos = cat->find ("-field1");
2616 cat->truncate(pos); 2616 cat->truncate(pos);
2617 categ = *cat; 2617 categ = *cat;
2618#endif 2618#endif
2619 if (!categ.isEmpty()) 2619 if (!categ.isEmpty())
2620 { 2620 {
2621 dialog->CategoryField->insertItem (categ, -1); 2621 dialog->CategoryField->insertItem (categ, -1);
2622 if (firstCategory.isEmpty()) 2622 if (firstCategory.isEmpty())
2623 firstCategory = categ; 2623 firstCategory = categ;
2624 } 2624 }
2625 } 2625 }
2626 ++it; 2626 ++it;
2627 } 2627 }
2628 2628
2629 2629
2630 if (firstCategory.isEmpty()) 2630 if (firstCategory.isEmpty())
2631 setCategoryDialogFields(dialog); 2631 setCategoryDialogFields(dialog);
2632 else 2632 else
2633 setCategoryDialogFields(dialog, firstCategory); 2633 setCategoryDialogFields(dialog, firstCategory);
2634 2634
2635 // CategoryDialog *dialog = new CategoryDialog(this, "Category", TRUE); 2635 // CategoryDialog *dialog = new CategoryDialog(this, "Category", TRUE);
2636 2636
2637 if (initIcons) 2637 if (initIcons)
2638 { 2638 {
2639 Wait waitDialog(this, tr("Wait dialog")); 2639 Wait waitDialog(this, tr("Wait dialog"));
2640 waitDialog.waitLabel->setText(tr("Gathering icons...")); 2640 waitDialog.waitLabel->setText(tr("Gathering icons..."));
2641 waitDialog.show(); 2641 waitDialog.show();
2642 qApp->processEvents(); 2642 qApp->processEvents();
2643 2643
2644#ifdef DESKTOP 2644#ifdef DESKTOP
2645 QDir d(iconPath); 2645 QDir d(iconPath);
2646#else 2646#else
2647 QDir d(QPEApplication::qpeDir() + "/pics/"); 2647 QDir d(QPEApplication::qpeDir() + "/pics/");
2648#endif 2648#endif
2649 d.setFilter( QDir::Files); 2649 d.setFilter( QDir::Files);
2650 2650
2651 const QFileInfoList *list = d.entryInfoList(); 2651 const QFileInfoList *list = d.entryInfoList();
2652 QFileInfoListIterator it( *list ); // create list iterator 2652 QFileInfoListIterator it( *list ); // create list iterator
2653 QFileInfo *fi; // pointer for traversing 2653 QFileInfo *fi; // pointer for traversing
2654 2654
2655 dialog->IconField->insertItem("predefined"); 2655 dialog->IconField->insertItem("predefined");
2656 while ( (fi=it.current()) ) { // for each file... 2656 while ( (fi=it.current()) ) { // for each file...
2657 QString fileName = fi->fileName(); 2657 QString fileName = fi->fileName();
2658 if(fileName.right(4) == ".png"){ 2658 if(fileName.right(4) == ".png"){
2659 fileName = fileName.mid(0,fileName.length()-4); 2659 fileName = fileName.mid(0,fileName.length()-4);
2660#ifdef DESKTOP 2660#ifdef DESKTOP
2661 QPixmap imageOfFile; 2661 QPixmap imageOfFile;
2662 imageOfFile.load(iconPath + fi->fileName()); 2662 imageOfFile.load(iconPath + fi->fileName());
2663#else 2663#else
2664 QPixmap imageOfFile(Resource::loadPixmap(fileName)); 2664 QPixmap imageOfFile(Resource::loadPixmap(fileName));
2665#endif 2665#endif
2666 QImage foo = imageOfFile.convertToImage(); 2666 QImage foo = imageOfFile.convertToImage();
2667 foo = foo.smoothScale(16,16); 2667 foo = foo.smoothScale(16,16);
2668 imageOfFile.convertFromImage(foo); 2668 imageOfFile.convertFromImage(foo);
2669 dialog->IconField->insertItem(imageOfFile,fileName); 2669 dialog->IconField->insertItem(imageOfFile,fileName);
2670 } 2670 }
2671 ++it; 2671 ++it;
2672 } 2672 }
2673 waitDialog.hide(); 2673 waitDialog.hide();
2674 } 2674 }
2675 2675
2676#ifndef WIN32 2676#ifndef WIN32
2677 dialog->show(); 2677 dialog->show();
2678#endif 2678#endif
2679#ifndef DESKTOP 2679#ifndef DESKTOP
2680 // dialog->move (20, 100); 2680 // dialog->move (20, 100);
2681#endif 2681#endif
2682 DialogCode result = (DialogCode) dialog->exec(); 2682 DialogCode result = (DialogCode) dialog->exec();
2683#ifdef DESKTOP 2683#ifdef DESKTOP
2684 result = Accepted; 2684 result = Accepted;
2685#endif 2685#endif
2686 2686
2687 QString category; 2687 QString category;
2688 QString icon; 2688 QString icon;
2689 QString fullIconPath; 2689 QString fullIconPath;
2690 QPixmap *pix; 2690 QPixmap *pix;
2691 if (result == Accepted) 2691 if (result == Accepted)
2692 { 2692 {
2693 modified = true; 2693 modified = true;
2694 category = dialog->CategoryField->currentText(); 2694 category = dialog->CategoryField->currentText();
2695 icon = dialog->IconField->currentText()+".png"; 2695 icon = dialog->IconField->currentText()+".png";
2696 2696
2697 qWarning (category); 2697 qWarning (category);
2698 2698
2699 QListViewItem *li = new ShadedListItem( 1, ListView ); 2699 QListViewItem *li = new ShadedListItem( 1, ListView );
2700 Category *c1 = new Category(); 2700 Category *c1 = new Category();
2701 c1->setCategoryName(category); 2701 c1->setCategoryName(category);
2702 2702
2703 // if (!icon.isEmpty() && !icon.isNull()) 2703 // if (!icon.isEmpty() && !icon.isNull())
2704 if (icon != "predefined.png") 2704 if (icon != "predefined.png")
2705 { 2705 {
2706 // build the full path 2706 // build the full path
2707 fullIconPath = iconPath + icon; 2707 fullIconPath = iconPath + icon;
2708 pix = new QPixmap (fullIconPath); 2708 pix = new QPixmap (fullIconPath);
2709 // pix->resize(14, 14); 2709 // pix->resize(14, 14);
2710 if (pix) 2710 if (pix)
2711 { 2711 {
2712 // save the full pixmap name into the config file 2712 // save the full pixmap name into the config file
2713// #ifndef WIN32 2713// #ifndef WIN32
2714 conf->writeEntry(APP_KEY+category, icon); 2714 conf->writeEntry(APP_KEY+category, icon);
2715// #endif 2715// #endif
2716 saveConf(); 2716 saveConf();
2717 QImage img = pix->convertToImage(); 2717 QImage img = pix->convertToImage();
2718 pix->convertFromImage(img.smoothScale(14,14)); 2718 pix->convertFromImage(img.smoothScale(14,14));
2719 c1->setIcon (*pix); 2719 c1->setIcon (*pix);
2720 c1->setIconName(icon); 2720 c1->setIconName(icon);
2721 } 2721 }
2722 else 2722 else
2723 { 2723 {
2724 QPixmap folder( ( const char** ) general_data ); 2724 QPixmap folder( ( const char** ) general_data );
2725 c1->setIcon (folder); 2725 c1->setIcon (folder);
2726 } 2726 }
2727 } 2727 }
2728 else 2728 else
2729 { 2729 {
2730 c1->setIcon (*getPredefinedIcon(category)); 2730 c1->setIcon (*getPredefinedIcon(category));
2731 } 2731 }
2732 2732
2733 c1->setListItem (li); 2733 c1->setListItem (li);
2734 c1->initListItem(); 2734 c1->initListItem();
2735 categories.insert (c1->getCategoryName(), c1); 2735 categories.insert (c1->getCategoryName(), c1);
2736 2736
2737 saveCategoryDialogFields(dialog); 2737 saveCategoryDialogFields(dialog);
2738 } 2738 }
2739 else 2739 else
2740 { 2740 {
2741 // delete dialog; 2741 // delete dialog;
2742 dialog->hide(); 2742 dialog->hide();
2743 return; 2743 return;
2744 } 2744 }
2745 2745
2746 } 2746 }
2747 2747
2748} 2748}
2749 2749
2750void ZSafe::delCategory() 2750void ZSafe::delCategory()
2751{ 2751{
2752 if (!selectedItem) 2752 if (!selectedItem)
2753 return; 2753 return;
2754 if (isCategory(selectedItem)) 2754 if (isCategory(selectedItem))
2755 { 2755 {
2756 switch( QMessageBox::information( this, tr("ZSafe"), 2756 switch( QMessageBox::information( this, tr("ZSafe"),
2757 tr("Do you want to delete?"), 2757 tr("Do you want to delete?"),
2758 tr("&Delete"), tr("D&on't Delete"), 2758 tr("&Delete"), tr("D&on't Delete"),
2759 0 // Enter == button 0 2759 0 // Enter == button 0
2760 ) ) { // Escape == button 2 2760 ) ) { // Escape == button 2
2761 case 0: // Delete clicked, Alt-S or Enter pressed. 2761 case 0: // Delete clicked, Alt-S or Enter pressed.
2762 // Delete from the category list 2762 // Delete from the category list
2763 modified = true; 2763 modified = true;
2764 categories.remove (selectedItem->text(0)); 2764 categories.remove (selectedItem->text(0));
2765// #ifndef WIN32 2765// #ifndef WIN32
2766 conf->removeEntry (selectedItem->text(0)); 2766 conf->removeEntry (selectedItem->text(0));
2767// #endif 2767// #endif
2768 saveConf(); 2768 saveConf();
2769 2769
2770 // Delete the selected item and all subitems 2770 // Delete the selected item and all subitems
2771 // step through all subitems 2771 // step through all subitems
2772 QListViewItem *si; 2772 QListViewItem *si;
2773 for (si = selectedItem->firstChild(); 2773 for (si = selectedItem->firstChild();
2774 si != NULL; ) 2774 si != NULL; )
2775 { 2775 {
2776 QListViewItem *_si = si; 2776 QListViewItem *_si = si;
2777 si = si->nextSibling(); 2777 si = si->nextSibling();
2778 selectedItem->takeItem(_si); // remove from view list 2778 selectedItem->takeItem(_si); // remove from view list
2779 if (_si) delete _si; 2779 if (_si) delete _si;
2780 } 2780 }
2781 ListView->takeItem(selectedItem); 2781 ListView->takeItem(selectedItem);
2782 delete selectedItem; 2782 delete selectedItem;
2783 2783
2784 selectedItem = NULL; 2784 selectedItem = NULL;
2785 break; 2785 break;
2786 case 1: // Don't delete 2786 case 1: // Don't delete
2787 break; 2787 break;
2788 } 2788 }
2789 2789
2790 } 2790 }
2791} 2791}
2792 2792
2793void ZSafe::setCategoryDialogFields(CategoryDialog *dialog) 2793void ZSafe::setCategoryDialogFields(CategoryDialog *dialog)
2794{ 2794{
2795 if (!dialog) 2795 if (!dialog)
2796 return; 2796 return;
2797 2797
2798 QString icon; 2798 QString icon;
2799 if (selectedItem) 2799 if (selectedItem)
2800 { 2800 {
2801 dialog->Field1->setText(getFieldLabel (selectedItem, "1", tr("Name"))); 2801 dialog->Field1->setText(getFieldLabel (selectedItem, "1", tr("Name")));
2802 dialog->Field2->setText(getFieldLabel (selectedItem, "2", tr("Username"))); 2802 dialog->Field2->setText(getFieldLabel (selectedItem, "2", tr("Username")));
2803 dialog->Field3->setText(getFieldLabel (selectedItem, "3", tr("Password"))); 2803 dialog->Field3->setText(getFieldLabel (selectedItem, "3", tr("Password")));
2804 dialog->Field4->setText(getFieldLabel (selectedItem, "4", tr("Comment"))); 2804 dialog->Field4->setText(getFieldLabel (selectedItem, "4", tr("Comment")));
2805 dialog->Field5->setText(getFieldLabel (selectedItem, "5", tr("Field 4"))); 2805 dialog->Field5->setText(getFieldLabel (selectedItem, "5", tr("Field 4")));
2806 dialog->Field6->setText(getFieldLabel (selectedItem, "6", tr("Field 5"))); 2806 dialog->Field6->setText(getFieldLabel (selectedItem, "6", tr("Field 5")));
2807 2807
2808 Category *cat= categories.find (selectedItem->text(0)); 2808 Category *cat= categories.find (selectedItem->text(0));
2809 if (cat) 2809 if (cat)
2810 { 2810 {
2811 icon = cat->getIconName(); 2811 icon = cat->getIconName();
2812 } 2812 }
2813 else
2814 icon = conf->readEntry(APP_KEY+selectedItem->text(0));
2813 } 2815 }
2814 else 2816 else
2815 { 2817 {
2816 dialog->Field1->setText(tr("Name")); 2818 dialog->Field1->setText(tr("Name"));
2817 dialog->Field2->setText(tr("Username")); 2819 dialog->Field2->setText(tr("Username"));
2818 dialog->Field3->setText(tr("Password")); 2820 dialog->Field3->setText(tr("Password"));
2819 dialog->Field4->setText(tr("Comment")); 2821 dialog->Field4->setText(tr("Comment"));
2820 dialog->Field5->setText(tr("Field 4")); 2822 dialog->Field5->setText(tr("Field 4"));
2821 dialog->Field6->setText(tr("Field 5")); 2823 dialog->Field6->setText(tr("Field 5"));
2822 } 2824 }
2823 2825
2824#ifdef DESKTOP 2826#ifdef DESKTOP
2825 QDir d(iconPath); 2827 QDir d(iconPath);
2826#else 2828#else
2827 QDir d(QPEApplication::qpeDir() + "/pics/"); 2829 QDir d(QPEApplication::qpeDir() + "/pics/");
2828#endif 2830#endif
2829 d.setFilter( QDir::Files); 2831 d.setFilter( QDir::Files);
2830 2832
2831 const QFileInfoList *list = d.entryInfoList(); 2833 const QFileInfoList *list = d.entryInfoList();
2832 int i=0; 2834 int i=0;
2833 QFileInfoListIterator it( *list ); // create list iterator 2835 QFileInfoListIterator it( *list ); // create list iterator
2834 QFileInfo *fi; // pointer for traversing 2836 QFileInfo *fi; // pointer for traversing
2835 if (icon.isEmpty() || icon.isNull()) 2837 if (icon.isEmpty() || icon.isNull())
2836 { 2838 {
2837 dialog->IconField->setCurrentItem(0); 2839 dialog->IconField->setCurrentItem(0);
2838 } 2840 }
2839 else 2841 else
2840 { 2842 {
2841 while ( (fi=it.current()) ) 2843 while ( (fi=it.current()) )
2842 { // for each file... 2844 { // for each file...
2843 QString fileName = fi->fileName(); 2845 QString fileName = fi->fileName();
2844 if(fileName.right(4) == ".png") 2846 if(fileName.right(4) == ".png")
2845 { 2847 {
2846 fileName = fileName.mid(0,fileName.length()-4); 2848 fileName = fileName.mid(0,fileName.length()-4);
2847 2849
2848 if(fileName+".png"==icon) 2850 if(fileName+".png"==icon)
2849 { 2851 {
2850 dialog->IconField->setCurrentItem(i+1); 2852 dialog->IconField->setCurrentItem(i+1);
2851 break; 2853 break;
2852 } 2854 }
2853 ++i; 2855 ++i;
2854 } 2856 }
2855 ++it; 2857 ++it;
2856 } 2858 }
2857 } 2859 }
2858} 2860}
2859 2861
2860void ZSafe::setCategoryDialogFields(CategoryDialog *dialog, QString category) 2862void ZSafe::setCategoryDialogFields(CategoryDialog *dialog, QString category)
2861{ 2863{
2862 if (!dialog) 2864 if (!dialog)
2863 return; 2865 return;
2864 2866
2865 dialog->Field1->setText(getFieldLabel (category, "1", tr("Name"))); 2867 dialog->Field1->setText(getFieldLabel (category, "1", tr("Name")));
2866 dialog->Field2->setText(getFieldLabel (category, "2", tr("Username"))); 2868 dialog->Field2->setText(getFieldLabel (category, "2", tr("Username")));
2867 dialog->Field3->setText(getFieldLabel (category, "3", tr("Password"))); 2869 dialog->Field3->setText(getFieldLabel (category, "3", tr("Password")));
2868 dialog->Field4->setText(getFieldLabel (category, "4", tr("Comment"))); 2870 dialog->Field4->setText(getFieldLabel (category, "4", tr("Comment")));
2869 dialog->Field5->setText(getFieldLabel (category, "5", tr("Field 4"))); 2871 dialog->Field5->setText(getFieldLabel (category, "5", tr("Field 4")));
2870 dialog->Field6->setText(getFieldLabel (category, "6", tr("Field 5"))); 2872 dialog->Field6->setText(getFieldLabel (category, "6", tr("Field 5")));
2871 2873
2872 QString icon; 2874 QString icon;
2873 Category *cat= categories.find (category); 2875 Category *cat= categories.find (category);
2874 if (cat) 2876 if (cat)
2875 { 2877 {
2876 icon = cat->getIconName(); 2878 icon = cat->getIconName();
2877 } 2879 }
2880 else
2881 icon = conf->readEntry(APP_KEY+category);
2878 2882
2879#ifdef DESKTOP 2883#ifdef DESKTOP
2880 QDir d(iconPath); 2884 QDir d(iconPath);
2881#else 2885#else
2882 QDir d(QPEApplication::qpeDir() + "/pics/"); 2886 QDir d(QPEApplication::qpeDir() + "/pics/");
2883#endif 2887#endif
2884 d.setFilter( QDir::Files); 2888 d.setFilter( QDir::Files);
2885 2889
2886 const QFileInfoList *list = d.entryInfoList(); 2890 const QFileInfoList *list = d.entryInfoList();
2887 int i=0; 2891 int i=0;
2888 QFileInfoListIterator it( *list ); // create list iterator 2892 QFileInfoListIterator it( *list ); // create list iterator
2889 QFileInfo *fi; // pointer for traversing 2893 QFileInfo *fi; // pointer for traversing
2890 if (icon.isEmpty() || icon.isNull()) 2894 if (icon.isEmpty() || icon.isNull())
2891 { 2895 {
2892 dialog->IconField->setCurrentItem(0); 2896 dialog->IconField->setCurrentItem(0);
2893 } 2897 }
2894 else 2898 else
2895 { 2899 {
2896 while ( (fi=it.current()) ) 2900 while ( (fi=it.current()) )
2897 { // for each file... 2901 { // for each file...
2898 QString fileName = fi->fileName(); 2902 QString fileName = fi->fileName();
2899 if(fileName.right(4) == ".png") 2903 if(fileName.right(4) == ".png")
2900 { 2904 {
2901 fileName = fileName.mid(0,fileName.length()-4); 2905 fileName = fileName.mid(0,fileName.length()-4);
2902 2906
2903 if(fileName+".png"==icon) 2907 if(fileName+".png"==icon)
2904 { 2908 {
2905 dialog->IconField->setCurrentItem(i+1); 2909 dialog->IconField->setCurrentItem(i+1);
2906 break; 2910 break;
2907 } 2911 }
2908 ++i; 2912 ++i;
2909 } 2913 }
2910 ++it; 2914 ++it;
2911 } 2915 }
2912 } 2916 }
2913} 2917}
2914 2918
2915void ZSafe::saveCategoryDialogFields(CategoryDialog *dialog) 2919void ZSafe::saveCategoryDialogFields(CategoryDialog *dialog)
2916{ 2920{
2917 QString app_key = APP_KEY; 2921 QString app_key = APP_KEY;
2918#ifndef DESKTOP 2922#ifndef DESKTOP
2919 conf->setGroup ("fieldDefs"); 2923 conf->setGroup ("fieldDefs");
2920#else 2924#else
2921#ifndef WIN32 2925#ifndef WIN32
2922 app_key += "/fieldDefs/"; 2926 app_key += "/fieldDefs/";
2923#endif 2927#endif
2924#endif 2928#endif
2925 QString category = dialog->CategoryField->currentText(); 2929 QString category = dialog->CategoryField->currentText();
2926// #ifndef WIN32 2930// #ifndef WIN32
2927 conf->writeEntry(app_key+category+"-field1", dialog->Field1->text()); 2931 conf->writeEntry(app_key+category+"-field1", dialog->Field1->text());
2928 conf->writeEntry(app_key+category+"-field2", dialog->Field2->text()); 2932 conf->writeEntry(app_key+category+"-field2", dialog->Field2->text());
2929 conf->writeEntry(app_key+category+"-field3", dialog->Field3->text()); 2933 conf->writeEntry(app_key+category+"-field3", dialog->Field3->text());
2930 conf->writeEntry(app_key+category+"-field4", dialog->Field4->text()); 2934 conf->writeEntry(app_key+category+"-field4", dialog->Field4->text());
2931 conf->writeEntry(app_key+category+"-field5", dialog->Field5->text()); 2935 conf->writeEntry(app_key+category+"-field5", dialog->Field5->text());
2932 conf->writeEntry(app_key+category+"-field6", dialog->Field6->text()); 2936 conf->writeEntry(app_key+category+"-field6", dialog->Field6->text());
2933// #endif 2937// #endif
2934 saveConf(); 2938 saveConf();
2935#ifndef DESKTOP 2939#ifndef DESKTOP
2936 conf->setGroup ("zsafe"); 2940 conf->setGroup ("zsafe");
2937#endif 2941#endif
2938} 2942}
2939 2943
2940void ZSafe::editCategory() 2944void ZSafe::editCategory()
2941{ 2945{
2942 if (!selectedItem) 2946 if (!selectedItem)
2943 return; 2947 return;
2944 if (isCategory(selectedItem)) 2948 if (isCategory(selectedItem))
2945 { 2949 {
2946 QString category = selectedItem->text(0); 2950 QString category = selectedItem->text(0);
2947 bool initIcons = false; 2951 bool initIcons = false;
2948 // open the 'Category' dialog 2952 // open the 'Category' dialog
2949 CategoryDialog *dialog; 2953 CategoryDialog *dialog;
2950 if (categoryDialog) 2954 if (categoryDialog)
2951 { 2955 {
2952 dialog = categoryDialog; 2956 dialog = categoryDialog;
2953 } 2957 }
2954 else 2958 else
2955 { 2959 {
2956 categoryDialog = new CategoryDialog(this, tr("Category"), TRUE); 2960 categoryDialog = new CategoryDialog(this, tr("Category"), TRUE);
2957#ifdef WIN32 2961#ifdef WIN32
2958 categoryDialog->setCaption ("Qt " + tr("Category")); 2962 categoryDialog->setCaption ("Qt " + tr("Category"));
2959#endif 2963#endif
2960 dialog = categoryDialog; 2964 dialog = categoryDialog;
2961 connect( dialog->CategoryField, 2965 connect( dialog->CategoryField,
2962 SIGNAL( activated ( const QString &)), 2966 SIGNAL( activated ( const QString &)),
2963 this, SLOT( categoryFieldActivated( const QString & ) ) ); 2967 this, SLOT( categoryFieldActivated( const QString & ) ) );
2964 initIcons = true; 2968 initIcons = true;
2965 } 2969 }
2966 setCategoryDialogFields(dialog); 2970 setCategoryDialogFields(dialog);
2967 2971
2968#ifdef DESKTOP 2972#ifdef DESKTOP
2969#ifndef WIN32 2973#ifndef WIN32
2970 QStringList list = conf->entryList( APP_KEY+"/fieldDefs" ); 2974 QStringList list = conf->entryList( APP_KEY+"/fieldDefs" );
2971#else 2975#else
2972 // read all categories from the config file and store 2976 // read all categories from the config file and store
2973 // into a list 2977 // into a list
2974 QFile f (cfgFile); 2978 QFile f (cfgFile);
2975 QStringList list; 2979 QStringList list;
2976 if ( f.open(IO_ReadOnly) ) { // file opened successfully 2980 if ( f.open(IO_ReadOnly) ) { // file opened successfully
2977 QTextStream t( &f ); // use a text stream 2981 QTextStream t( &f ); // use a text stream
2978 QString s; 2982 QString s;
2979 int n = 1; 2983 int n = 1;
2980 while ( !t.eof() ) { // until end of file... 2984 while ( !t.eof() ) { // until end of file...
2981 s = t.readLine(); // line of text excluding '\n' 2985 s = t.readLine(); // line of text excluding '\n'
2982 list.append(s); 2986 list.append(s);
2983 } 2987 }
2984 f.close(); 2988 f.close();
2985 } 2989 }
2986#endif 2990#endif
2987#else 2991#else
2988 // read all categories from the config file and store 2992 // read all categories from the config file and store
2989 // into a list 2993 // into a list
2990 QFile f (cfgFile); 2994 QFile f (cfgFile);
2991 QStringList list; 2995 QStringList list;
2992 if ( f.open(IO_ReadOnly) ) { // file opened successfully 2996 if ( f.open(IO_ReadOnly) ) { // file opened successfully
2993 QTextStream t( &f ); // use a text stream 2997 QTextStream t( &f ); // use a text stream
2994 QString s; 2998 QString s;
2995 while ( !t.eof() ) { // until end of file... 2999 while ( !t.eof() ) { // until end of file...
2996 s = t.readLine(); // line of text excluding '\n' 3000 s = t.readLine(); // line of text excluding '\n'
2997 list.append(s); 3001 list.append(s);
2998 } 3002 }
2999 f.close(); 3003 f.close();
3000 } 3004 }
3001#endif 3005#endif
3002 QStringList::Iterator it = list.begin(); 3006 QStringList::Iterator it = list.begin();
3003 QString categ; 3007 QString categ;
3004 dialog->CategoryField->clear(); // remove all items 3008 dialog->CategoryField->clear(); // remove all items
3005 int i=0; 3009 int i=0;
3006 bool foundCategory = false; 3010 bool foundCategory = false;
3007 while( it != list.end() ) 3011 while( it != list.end() )
3008 { 3012 {
3009 QString *cat = new QString (*it); 3013 QString *cat = new QString (*it);
3010 if (cat->contains("-field1", FALSE)) 3014 if (cat->contains("-field1", FALSE))
3011 { 3015 {
3012#ifdef DESKTOP 3016#ifdef DESKTOP
3013#ifndef WIN32 3017#ifndef WIN32
3014 categ = cat->section ("-field1", 0, 0); 3018 categ = cat->section ("-field1", 0, 0);
3015#else 3019#else
3016 int pos = cat->find ("-field1"); 3020 int pos = cat->find ("-field1");
3017 categ = cat->left (pos); 3021 categ = cat->left (pos);
3018#endif 3022#endif
3019#else 3023#else
3020 int pos = cat->find ("-field1"); 3024 int pos = cat->find ("-field1");
3021 cat->truncate(pos); 3025 cat->truncate(pos);
3022 categ = *cat; 3026 categ = *cat;
3023#endif 3027#endif
3024 if (!categ.isEmpty()) 3028 if (!categ.isEmpty())
3025 { 3029 {
3026 dialog->CategoryField->insertItem (categ, i); 3030 dialog->CategoryField->insertItem (categ, i);
3027 if (category.compare(categ) == 0) 3031 if (category.compare(categ) == 0)
3028 { 3032 {
3029 dialog->CategoryField->setCurrentItem(i); 3033 dialog->CategoryField->setCurrentItem(i);
3030 foundCategory = true; 3034 foundCategory = true;
3031 } 3035 }
3032 i++; 3036 i++;
3033 } 3037 }
3034 } 3038 }
3035 ++it; 3039 ++it;
3036 } 3040 }
3037 if (!foundCategory) 3041 if (!foundCategory)
3038 { 3042 {
3039 dialog->CategoryField->insertItem (category, i); 3043 dialog->CategoryField->insertItem (category, i);
3040 dialog->CategoryField->setCurrentItem(i); 3044 dialog->CategoryField->setCurrentItem(i);
3041 } 3045 }
3042 3046
3043 QString icon; 3047 QString icon;
3044 Category *cat= categories.find (selectedItem->text(0)); 3048 Category *cat= categories.find (selectedItem->text(0));
3045 if (cat) 3049 if (cat)
3046 { 3050 {
3047 icon = cat->getIconName(); 3051 icon = cat->getIconName();
3048 } 3052 }
3049 3053
3050 if (initIcons) 3054 if (initIcons)
3051 { 3055 {
3052 3056
3053 Wait waitDialog(this, tr("Wait dialog")); 3057 Wait waitDialog(this, tr("Wait dialog"));
3054 waitDialog.waitLabel->setText(tr("Gathering icons...")); 3058 waitDialog.waitLabel->setText(tr("Gathering icons..."));
3055 waitDialog.show(); 3059 waitDialog.show();
3056 qApp->processEvents(); 3060 qApp->processEvents();
3057 3061
3058#ifdef DESKTOP 3062#ifdef DESKTOP
3059 QDir d(iconPath); 3063 QDir d(iconPath);
3060#else 3064#else
3061 QDir d(QPEApplication::qpeDir() + "/pics/"); 3065 QDir d(QPEApplication::qpeDir() + "/pics/");
3062#endif 3066#endif
3063 d.setFilter( QDir::Files); 3067 d.setFilter( QDir::Files);
3064 3068
3065 const QFileInfoList *list = d.entryInfoList(); 3069 const QFileInfoList *list = d.entryInfoList();
3066 int i=0; 3070 int i=0;
3067 QFileInfoListIterator it( *list ); // create list iterator 3071 QFileInfoListIterator it( *list ); // create list iterator
3068 QFileInfo *fi; // pointer for traversing 3072 QFileInfo *fi; // pointer for traversing
3069 if (icon.isEmpty() || icon.isNull()) 3073 if (icon.isEmpty() || icon.isNull())
3070 { 3074 {
3071 dialog->IconField->setCurrentItem(0); 3075 dialog->IconField->setCurrentItem(0);
3072 } 3076 }
3073 3077
3074 dialog->IconField->insertItem("predefined"); 3078 dialog->IconField->insertItem("predefined");
3075 while ( (fi=it.current()) ) { // for each file... 3079 while ( (fi=it.current()) ) { // for each file...
3076 QString fileName = fi->fileName(); 3080 QString fileName = fi->fileName();
3077 if(fileName.right(4) == ".png") 3081 if(fileName.right(4) == ".png")
3078 { 3082 {
3079 fileName = fileName.mid(0,fileName.length()-4); 3083 fileName = fileName.mid(0,fileName.length()-4);
3080#ifdef DESKTOP 3084#ifdef DESKTOP
3081 QPixmap imageOfFile; 3085 QPixmap imageOfFile;
3082 imageOfFile.load(iconPath + fi->fileName()); 3086 imageOfFile.load(iconPath + fi->fileName());
3083#else 3087#else
3084 QPixmap imageOfFile(Resource::loadPixmap(fileName)); 3088 QPixmap imageOfFile(Resource::loadPixmap(fileName));
3085#endif 3089#endif
3086 QImage foo = imageOfFile.convertToImage(); 3090 QImage foo = imageOfFile.convertToImage();
3087 foo = foo.smoothScale(16,16); 3091 foo = foo.smoothScale(16,16);
3088 imageOfFile.convertFromImage(foo); 3092 imageOfFile.convertFromImage(foo);
3089 dialog->IconField->insertItem(imageOfFile,fileName); 3093 dialog->IconField->insertItem(imageOfFile,fileName);
3090 if(fileName+".png"==icon) 3094 if(fileName+".png"==icon)
3091 dialog->IconField->setCurrentItem(i+1); 3095 dialog->IconField->setCurrentItem(i+1);
3092 ++i; 3096 ++i;
3093 } 3097 }
3094 ++it; 3098 ++it;
3095 } 3099 }
3096 waitDialog.hide(); 3100 waitDialog.hide();
3097 } 3101 }
3098 else 3102 else
3099 { 3103 {
3100#ifdef DESKTOP 3104#ifdef DESKTOP
3101 // QDir d(QDir::homeDirPath() + "/pics/"); 3105 // QDir d(QDir::homeDirPath() + "/pics/");
3102 QDir d(iconPath); 3106 QDir d(iconPath);
3103#else 3107#else
3104 QDir d(QPEApplication::qpeDir() + "/pics/"); 3108 QDir d(QPEApplication::qpeDir() + "/pics/");
3105#endif 3109#endif
3106 d.setFilter( QDir::Files); 3110 d.setFilter( QDir::Files);
3107 3111
3108 const QFileInfoList *list = d.entryInfoList(); 3112 const QFileInfoList *list = d.entryInfoList();
3109 int i=0; 3113 int i=0;
3110 QFileInfoListIterator it( *list ); // create list iterator 3114 QFileInfoListIterator it( *list ); // create list iterator
3111 QFileInfo *fi; // pointer for traversing 3115 QFileInfo *fi; // pointer for traversing
3112 if (icon.isEmpty() || icon.isNull()) 3116 if (icon.isEmpty() || icon.isNull())
3113 { 3117 {
3114 dialog->IconField->setCurrentItem(0); 3118 dialog->IconField->setCurrentItem(0);
3115 } 3119 }
3116 else 3120 else
3117 { 3121 {
3118 3122
3119 while ( (fi=it.current()) ) 3123 while ( (fi=it.current()) )
3120 { // for each file... 3124 { // for each file...
3121 QString fileName = fi->fileName(); 3125 QString fileName = fi->fileName();
3122 if(fileName.right(4) == ".png") 3126 if(fileName.right(4) == ".png")
3123 { 3127 {
3124 fileName = fileName.mid(0,fileName.length()-4); 3128 fileName = fileName.mid(0,fileName.length()-4);
3125 3129
3126 3130
3127 if(fileName+".png"==icon) 3131 if(fileName+".png"==icon)
3128 { 3132 {
3129 dialog->IconField->setCurrentItem(i+1); 3133 dialog->IconField->setCurrentItem(i+1);
3130 break; 3134 break;
3131 } 3135 }
3132 ++i; 3136 ++i;
3133 } 3137 }