summaryrefslogtreecommitdiff
path: root/library/lnkproperties.cpp
authorharlekin <harlekin>2002-02-23 21:35:06 (UTC)
committer harlekin <harlekin>2002-02-23 21:35:06 (UTC)
commit9f9006e0257e3d4c5d66331a7d6061c8a5da164b (patch) (unidiff)
tree7919a33f366cd63b2a1769d42047568d31121a12 /library/lnkproperties.cpp
parentc200950a2b120b015783f1552fd68c355bcc3185 (diff)
downloadopie-9f9006e0257e3d4c5d66331a7d6061c8a5da164b.zip
opie-9f9006e0257e3d4c5d66331a7d6061c8a5da164b.tar.gz
opie-9f9006e0257e3d4c5d66331a7d6061c8a5da164b.tar.bz2
changes property dialog in documents; now it is possible to delete only the icon not also the file
Diffstat (limited to 'library/lnkproperties.cpp') (more/less context) (show whitespace changes)
-rw-r--r--library/lnkproperties.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp
index e278cb2..abd430c 100644
--- a/library/lnkproperties.cpp
+++ b/library/lnkproperties.cpp
@@ -1,180 +1,201 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21// WARNING: Do *NOT* define this yourself. The SL5xxx from SHARP does NOT
22// have this class.
23#define QTOPIA_INTERNAL_FSLP
24#include "lnkproperties.h"
21#include "lnkproperties.h" 25#include "lnkproperties.h"
22#include "lnkpropertiesbase_p.h" 26#include "lnkpropertiesbase_p.h"
23#include "ir.h" 27#include "ir.h"
24 28
25#include <qpe/applnk.h> 29#include <qpe/applnk.h>
26#include <qpe/global.h> 30#include <qpe/global.h>
27#include <qpe/categorywidget.h> 31#include <qpe/categorywidget.h>
28#include <qpe/qcopenvelope_qws.h> 32#include <qpe/qcopenvelope_qws.h>
29#include <qpe/filemanager.h> 33#include <qpe/filemanager.h>
30#include <qpe/config.h> 34#include <qpe/config.h>
31#include <qpe/storage.h> 35#include <qpe/storage.h>
32#include <qpe/qpemessagebox.h> 36#include <qpe/qpemessagebox.h>
33 37
34#include <qlineedit.h> 38#include <qlineedit.h>
35#include <qtoolbutton.h> 39#include <qtoolbutton.h>
36#include <qpushbutton.h> 40#include <qpushbutton.h>
37#include <qgroupbox.h> 41#include <qgroupbox.h>
38#include <qcheckbox.h> 42#include <qcheckbox.h>
39#include <qlabel.h> 43#include <qlabel.h>
40#include <qlayout.h> 44#include <qlayout.h>
41#include <qfile.h> 45#include <qfile.h>
42#include <qfileinfo.h> 46#include <qfileinfo.h>
43#include <qmessagebox.h> 47#include <qmessagebox.h>
44#include <qsize.h> 48#include <qsize.h>
45#include <qcombobox.h> 49#include <qcombobox.h>
46#include <qregexp.h> 50#include <qregexp.h>
47 51
48#include <stdlib.h> 52#include <stdlib.h>
49 53
50LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) 54LnkProperties::LnkProperties( AppLnk* l, QWidget* parent )
51 : QDialog( parent, 0, TRUE ), lnk(l), fileSize( 0 ) 55 : QDialog( parent, 0, TRUE ), lnk(l), fileSize( 0 )
52{ 56{
53 QVBoxLayout *vbox = new QVBoxLayout( this ); 57 QVBoxLayout *vbox = new QVBoxLayout( this );
54 d = new LnkPropertiesBase( this ); 58 d = new LnkPropertiesBase( this );
55 vbox->add( d ); 59 vbox->add( d );
56 60
57 d->docname->setText(l->name()); 61 d->docname->setText(l->name());
58 QString inf; 62 QString inf;
59 if ( l->type().isEmpty() ) { 63 if ( l->type().isEmpty() ) {
60 d->type->hide(); 64 d->type->hide();
61 d->typeLabel->hide(); 65 d->typeLabel->hide();
62 } else { 66 } else {
63 d->type->setText( l->type() ); 67 d->type->setText( l->type() );
64 } 68 }
65 69
66 if ( l->comment().isEmpty() ) { 70 if ( l->comment().isEmpty() ) {
67 d->comment->hide(); 71 d->comment->hide();
68 d->commentLabel->hide(); 72 d->commentLabel->hide();
69 } else { 73 } else {
70 d->comment->setText( l->comment() ); 74 d->comment->setText( l->comment() );
71 } 75 }
72 76
73 connect(d->beam,SIGNAL(clicked()),this,SLOT(beamLnk())); 77 connect(d->beam,SIGNAL(clicked()),this,SLOT(beamLnk()));
74 if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed) 78 if ( lnk->type().contains('/') ) { // A document? (#### better predicate needed)
75 connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk())); 79 connect(d->unlink,SIGNAL(clicked()),this,SLOT(unlinkLnk()));
76 connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk())); 80 connect(d->duplicate,SIGNAL(clicked()),this,SLOT(duplicateLnk()));
81 connect(d->delicon,SIGNAL(clicked()),this,SLOT(unlinkIcon()));
77 82
78 d->docname->setReadOnly( FALSE ); 83 d->docname->setReadOnly( FALSE );
79 d->preload->hide(); 84 d->preload->hide();
80 d->spacer->hide(); 85 d->spacer->hide();
81 86
82 // ### THIS MUST GO, FIX WIERD BUG in QLAYOUT 87 // ### THIS MUST GO, FIX WIERD BUG in QLAYOUT
83 d->categoryEdit->kludge(); 88 d->categoryEdit->kludge();
84 89
85 d->categoryEdit->setCategories( lnk->categories(), 90 d->categoryEdit->setCategories( lnk->categories(),
86 "Document View", 91 "Document View",
87 tr("Document View") ); 92 tr("Document View") );
88 setupLocations(); 93 setupLocations();
89 } else { 94 } else {
90 d->unlink->hide(); 95 d->unlink->hide();
91 d->duplicate->hide(); 96 d->duplicate->hide();
92 d->beam->hide(); 97 d->beam->hide();
93 d->hline->hide(); 98 d->hline->hide();
94 d->locationLabel->hide(); 99 d->locationLabel->hide();
95 d->locationCombo->hide(); 100 d->locationCombo->hide();
96 101
97 // Can't edit categories, since the app .desktop files are global, 102 // Can't edit categories, since the app .desktop files are global,
98 // possibly read-only. 103 // possibly read-only.
99 d->categoryEdit->hide(); 104 d->categoryEdit->hide();
100 105
101 d->docname->setReadOnly( TRUE ); 106 d->docname->setReadOnly( TRUE );
102 107
103 if ( l->property("CanFastload") == "0" ) 108 if ( l->property("CanFastload") == "0" )
104 d->preload->hide(); 109 d->preload->hide();
105 110
106 Config cfg("Launcher"); 111 Config cfg("Launcher");
107 cfg.setGroup("Preload"); 112 cfg.setGroup("Preload");
108 QStringList apps = cfg.readListEntry("Apps",','); 113 QStringList apps = cfg.readListEntry("Apps",',');
109 d->preload->setChecked( apps.contains(l->exec()) ); 114 d->preload->setChecked( apps.contains(l->exec()) );
110 if ( Global::isBuiltinCommand(lnk->exec()) ) 115 if ( Global::isBuiltinCommand(lnk->exec()) )
111 d->preload->hide(); // builtins are always fast 116 d->preload->hide(); // builtins are always fast
112 117
113 currentLocation = 0; // apps not movable (yet) 118 currentLocation = 0; // apps not movable (yet)
114 } 119 }
115} 120}
116 121
117LnkProperties::~LnkProperties() 122LnkProperties::~LnkProperties()
118{ 123{
119} 124}
120 125
121void LnkProperties::unlinkLnk() 126void LnkProperties::unlinkLnk()
122{ 127{
123 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) { 128 if ( QPEMessageBox::confirmDelete( this, tr("Delete"), lnk->name() ) ) {
124 lnk->removeFiles(); 129 lnk->removeFiles();
125 if ( QFile::exists(lnk->file()) ) { 130 if ( QFile::exists(lnk->file()) ) {
126 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") ); 131 QMessageBox::warning( this, tr("Delete"), tr("File deletion failed.") );
127 } else { 132 } else {
128 reject(); 133 reject();
129 } 134 }
130 } 135 }
131} 136}
132 137
138
139/*
140 * remove only the link from documents, not also the file
141 */
142void LnkProperties::unlinkIcon()
143{
144 if ( QPEMessageBox::confirmDelete( this, tr("Delete Icon and leave file"), lnk->name() ) ) {
145 lnk->removeLinkFile();
146 if ( QFile::exists(lnk->linkFile()) ) {
147 QMessageBox::warning( this, tr("Delete"), tr("Icon deletion failed.") );
148 } else {
149 reject();
150 }
151 }
152}
153
133void LnkProperties::setupLocations() 154void LnkProperties::setupLocations()
134{ 155{
135 QFileInfo fi( lnk->file() ); 156 QFileInfo fi( lnk->file() );
136 fileSize = fi.size(); 157 fileSize = fi.size();
137 StorageInfo storage; 158 StorageInfo storage;
138 const QList<FileSystem> &fs = storage.fileSystems(); 159 const QList<FileSystem> &fs = storage.fileSystems();
139 QListIterator<FileSystem> it ( fs ); 160 QListIterator<FileSystem> it ( fs );
140 QString s; 161 QString s;
141 QString homeDir = getenv("HOME"); 162 QString homeDir = getenv("HOME");
142 QString hardDiskHome; 163 QString hardDiskHome;
143 QString hardDiskPath; 164 QString hardDiskPath;
144 int index = 0; 165 int index = 0;
145 currentLocation = -1; 166 currentLocation = -1;
146 for ( ; it.current(); ++it ) { 167 for ( ; it.current(); ++it ) {
147 // we add 10k to the file size so we are sure we can also save the desktop file 168 // we add 10k to the file size so we are sure we can also save the desktop file
148 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) { 169 if ( (*it)->availBlocks() * (*it)->blockSize() > fileSize + 10000 ) {
149 if ( (*it)->isRemovable() || 170 if ( (*it)->isRemovable() ||
150 (*it)->disk() == "/dev/mtdblock1" || 171 (*it)->disk() == "/dev/mtdblock1" ||
151 (*it)->disk() == "/dev/mtdblock/1" ) { 172 (*it)->disk() == "/dev/mtdblock/1" ) {
152 d->locationCombo->insertItem( (*it)->name(), index ); 173 d->locationCombo->insertItem( (*it)->name(), index );
153 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) ); 174 locations.append( ((*it)->isRemovable() ? (*it)->path() : homeDir) );
154 if ( lnk->file().contains( (*it)->path() ) ) { 175 if ( lnk->file().contains( (*it)->path() ) ) {
155 d->locationCombo->setCurrentItem( index ); 176 d->locationCombo->setCurrentItem( index );
156 currentLocation = index; 177 currentLocation = index;
157 } 178 }
158 index++; 179 index++;
159 } else if ( (*it)->name().contains( "Hard Disk") && 180 } else if ( (*it)->name().contains( "Hard Disk") &&
160 homeDir.contains( (*it)->path() ) && 181 homeDir.contains( (*it)->path() ) &&
161 (*it)->path().length() > hardDiskHome.length() ) { 182 (*it)->path().length() > hardDiskHome.length() ) {
162 hardDiskHome = (*it)->name(); 183 hardDiskHome = (*it)->name();
163 hardDiskPath = (*it)->path(); 184 hardDiskPath = (*it)->path();
164 } 185 }
165 } 186 }
166 } 187 }
167 if ( !hardDiskHome.isEmpty() ) { 188 if ( !hardDiskHome.isEmpty() ) {
168 d->locationCombo->insertItem( hardDiskHome ); 189 d->locationCombo->insertItem( hardDiskHome );
169 locations.append( hardDiskPath ); 190 locations.append( hardDiskPath );
170 if ( currentLocation == -1 ) { // assume it's the hard disk 191 if ( currentLocation == -1 ) { // assume it's the hard disk
171 d->locationCombo->setCurrentItem( index ); 192 d->locationCombo->setCurrentItem( index );
172 currentLocation = index; 193 currentLocation = index;
173 } 194 }
174 } 195 }
175} 196}
176 197
177void LnkProperties::duplicateLnk() 198void LnkProperties::duplicateLnk()
178{ 199{
179 // The duplicate takes the new properties. 200 // The duplicate takes the new properties.
180 DocLnk newdoc( *((DocLnk *)lnk) ); 201 DocLnk newdoc( *((DocLnk *)lnk) );