author | mickeyl <mickeyl> | 2004-02-24 14:29:33 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-02-24 14:29:33 (UTC) |
commit | b044a19bc3ea1983989c81e2743a3590fab85bae (patch) (unidiff) | |
tree | 739825bedb3c86009457aac15a0a87f2c699d391 | |
parent | 5548f96b149e8416dd65661f9cc85ba8e434e0e5 (diff) | |
download | opie-b044a19bc3ea1983989c81e2743a3590fab85bae.zip opie-b044a19bc3ea1983989c81e2743a3590fab85bae.tar.gz opie-b044a19bc3ea1983989c81e2743a3590fab85bae.tar.bz2 |
add missing patch from v1_0_3 disabling fixed custom rotation in favour of live rotation
-rw-r--r-- | library/lnkproperties.cpp | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp index 50cf5af..8dca4ab 100644 --- a/library/lnkproperties.cpp +++ b/library/lnkproperties.cpp | |||
@@ -60,12 +60,17 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) | |||
60 | setCaption( tr("Properties") ); | 60 | setCaption( tr("Properties") ); |
61 | 61 | ||
62 | QVBoxLayout *vbox = new QVBoxLayout( this ); | 62 | QVBoxLayout *vbox = new QVBoxLayout( this ); |
63 | d = new LnkPropertiesBase( this ); | 63 | d = new LnkPropertiesBase( this ); |
64 | vbox->add( d ); | 64 | vbox->add( d ); |
65 | 65 | ||
66 | // hide custom rotation feature for now, need a new implementation to fit quicklauch, | ||
67 | // is confusing for the user and doubtable useful since life rotation | ||
68 | d->rotate->hide(); | ||
69 | d->rotateButtons->hide(); | ||
70 | |||
66 | d->docname->setText(l->name()); | 71 | d->docname->setText(l->name()); |
67 | QString inf; | 72 | QString inf; |
68 | if ( l->type().isEmpty() ) { | 73 | if ( l->type().isEmpty() ) { |
69 | d->type->hide(); | 74 | d->type->hide(); |
70 | d->typeLabel->hide(); | 75 | d->typeLabel->hide(); |
71 | } else { | 76 | } else { |
@@ -112,13 +117,14 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) | |||
112 | d->docname->setReadOnly( TRUE ); | 117 | d->docname->setReadOnly( TRUE ); |
113 | 118 | ||
114 | if ( l->property("CanFastload") == "0" ) | 119 | if ( l->property("CanFastload") == "0" ) |
115 | d->preload->hide(); | 120 | d->preload->hide(); |
116 | if ( !l->property("Rotation"). isEmpty ()) { | 121 | if ( !l->property("Rotation"). isEmpty ()) { |
117 | d->rotate->setChecked ( true ); | 122 | d->rotate->setChecked ( true ); |
118 | d->rotateButtons->setButton((l->rotation().toInt()%360)/90); | 123 | //don't use rotate buttons for now (see comment above) |
124 | //d->rotateButtons->setButton((l->rotation().toInt()%360)/90); | ||
119 | } | 125 | } |
120 | else { | 126 | else { |
121 | d->rotateButtons->setEnabled(false); | 127 | d->rotateButtons->setEnabled(false); |
122 | } | 128 | } |
123 | 129 | ||
124 | Config cfg("Launcher"); | 130 | Config cfg("Launcher"); |
@@ -165,16 +171,17 @@ void LnkProperties::setupLocations() | |||
165 | // we add 10k to the file size so we are sure we can also save the desktop file | 171 | // we add 10k to the file size so we are sure we can also save the desktop file |
166 | if ( (ulong)(*it)->availBlocks() * (ulong)(*it)->blockSize() > (ulong)fileSize + 10000 ) { | 172 | if ( (ulong)(*it)->availBlocks() * (ulong)(*it)->blockSize() > (ulong)fileSize + 10000 ) { |
167 | if ( (*it)->isRemovable() || | 173 | if ( (*it)->isRemovable() || |
168 | (*it)->disk() == "/dev/mtdblock1" || | 174 | (*it)->disk() == "/dev/mtdblock1" || |
169 | (*it)->disk() == "/dev/mtdblock/1" || | 175 | (*it)->disk() == "/dev/mtdblock/1" || |
170 | (*it)->disk().left(13) == "/dev/mtdblock" || | 176 | (*it)->disk().left(13) == "/dev/mtdblock" || |
171 | (*it)->disk() == "/dev/mtdblock6" || | 177 | (*it)->disk() == "/dev/mtdblock6" || |
178 | (*it )->disk() == "/dev/root" || | ||
172 | (*it)->disk() == "tmpfs" ) { | 179 | (*it)->disk() == "tmpfs" ) { |
173 | d->locationCombo->insertItem( (*it)->name(), index ); | 180 | d->locationCombo->insertItem( (*it)->name(), index ); |
174 | locations.append( ( ((*it)->isRemovable() || | 181 | locations.append( ( ((*it)->isRemovable() || |
175 | (*it)->disk() == "/dev/mtdblock6" || | 182 | (*it)->disk() == "/dev/mtdblock6" || |
176 | (*it)->disk() == "tmpfs" ) | 183 | (*it)->disk() == "tmpfs" ) |
177 | ? (*it)->path() : homeDir) ); | 184 | ? (*it)->path() : homeDir) ); |
178 | if ( lnk->file().contains( (*it)->path() ) ) { | 185 | if ( lnk->file().contains( (*it)->path() ) ) { |
179 | d->locationCombo->setCurrentItem( index ); | 186 | d->locationCombo->setCurrentItem( index ); |
180 | currentLocation = index; | 187 | currentLocation = index; |
@@ -272,13 +279,13 @@ bool LnkProperties::copyFile( DocLnk &newdoc ) | |||
272 | 279 | ||
273 | void LnkProperties::done(int ok) | 280 | void LnkProperties::done(int ok) |
274 | { | 281 | { |
275 | if ( ok ) { | 282 | if ( ok ) { |
276 | bool changed=FALSE; | 283 | bool changed=FALSE; |
277 | bool reloadMime=FALSE; | 284 | bool reloadMime=FALSE; |
278 | 285 | ||
279 | if ( lnk->name() != d->docname->text() ) { | 286 | if ( lnk->name() != d->docname->text() ) { |
280 | lnk->setName(d->docname->text()); | 287 | lnk->setName(d->docname->text()); |
281 | changed=TRUE; | 288 | changed=TRUE; |
282 | } | 289 | } |
283 | if ( d->categoryEdit->isVisible() ) { | 290 | if ( d->categoryEdit->isVisible() ) { |
284 | QArray<int> tmp = d->categoryEdit->newCategories(); | 291 | QArray<int> tmp = d->categoryEdit->newCategories(); |
@@ -286,13 +293,13 @@ void LnkProperties::done(int ok) | |||
286 | lnk->setCategories( tmp ); | 293 | lnk->setCategories( tmp ); |
287 | changed = TRUE; | 294 | changed = TRUE; |
288 | } | 295 | } |
289 | } | 296 | } |
290 | if ( !d->rotate->isHidden()) { | 297 | if ( !d->rotate->isHidden()) { |
291 | QString newrot; | 298 | QString newrot; |
292 | 299 | ||
293 | if ( d->rotate->isChecked() ) { | 300 | if ( d->rotate->isChecked() ) { |
294 | int rot=0; | 301 | int rot=0; |
295 | for(; rot<4; rot++) { | 302 | for(; rot<4; rot++) { |
296 | if (d->rotateButtons->find(rot)->isOn()) | 303 | if (d->rotateButtons->find(rot)->isOn()) |
297 | break; | 304 | break; |
298 | } | 305 | } |
@@ -306,13 +313,13 @@ void LnkProperties::done(int ok) | |||
306 | } | 313 | } |
307 | if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) { | 314 | if ( d->preload->isHidden() && d->locationCombo->currentItem() != currentLocation ) { |
308 | moveLnk(); | 315 | moveLnk(); |
309 | } else if ( changed ) { | 316 | } else if ( changed ) { |
310 | lnk->writeLink(); | 317 | lnk->writeLink(); |
311 | } | 318 | } |
312 | 319 | ||
313 | if ( !d->preload->isHidden() ) { | 320 | if ( !d->preload->isHidden() ) { |
314 | Config cfg("Launcher"); | 321 | Config cfg("Launcher"); |
315 | cfg.setGroup("Preload"); | 322 | cfg.setGroup("Preload"); |
316 | QStringList apps = cfg.readListEntry("Apps",','); | 323 | QStringList apps = cfg.readListEntry("Apps",','); |
317 | QString exe = lnk->exec(); | 324 | QString exe = lnk->exec(); |
318 | if ( apps.contains(exe) != d->preload->isChecked() ) { | 325 | if ( apps.contains(exe) != d->preload->isChecked() ) { |