|
|
|
@ -451,7 +451,7 @@ void MainWindow::printFile() {
|
|
|
|
|
KPrinter printer;
|
|
|
|
|
|
|
|
|
|
printer.setDocName(mDocument->filename());
|
|
|
|
|
const TDEAboutData* pAbout = TDEApplication::kApplication()->aboutData();
|
|
|
|
|
const TDEAboutData* pAbout = tdeApp->aboutData();
|
|
|
|
|
TQString nm = pAbout->appName();
|
|
|
|
|
nm += "-";
|
|
|
|
|
nm += pAbout->version();
|
|
|
|
@ -516,7 +516,7 @@ void MainWindow::openFileViewControllerContextMenu(const TQPoint& pos, bool onIt
|
|
|
|
|
|
|
|
|
|
void MainWindow::slotImageLoading() {
|
|
|
|
|
if (FullScreenConfig::showBusyPtr() || !mToggleFullScreen->isChecked()) {
|
|
|
|
|
kapp->setOverrideCursor(KCursor::workingCursor(), true /* replace */);
|
|
|
|
|
tdeApp->setOverrideCursor(KCursor::workingCursor(), true /* replace */);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -524,7 +524,7 @@ void MainWindow::slotImageLoading() {
|
|
|
|
|
void MainWindow::slotImageLoaded() {
|
|
|
|
|
// Reciproc of slotImageLoading
|
|
|
|
|
if (FullScreenConfig::showBusyPtr() || !mToggleFullScreen->isChecked()) {
|
|
|
|
|
kapp->restoreOverrideCursor();
|
|
|
|
|
tdeApp->restoreOverrideCursor();
|
|
|
|
|
}
|
|
|
|
|
updateStatusInfo();
|
|
|
|
|
updateImageActions();
|
|
|
|
@ -979,7 +979,7 @@ void MainWindow::createActions() {
|
|
|
|
|
mLinkFiles=new TDEAction(i18n("&Link To..."),Key_F9,this,TQ_SLOT(linkFiles()),actionCollection(),"file_link");
|
|
|
|
|
mDeleteFiles=new TDEAction(i18n("&Delete"),"edit-delete",Key_Delete,this,TQ_SLOT(deleteFiles()),actionCollection(),"file_delete");
|
|
|
|
|
mShowFileProperties=new TDEAction(i18n("Properties"),0,this,TQ_SLOT(showFileProperties()),actionCollection(),"file_properties");
|
|
|
|
|
KStdAction::quit( kapp, TQ_SLOT (closeAllWindows()), actionCollection() );
|
|
|
|
|
KStdAction::quit( tdeApp, TQ_SLOT (closeAllWindows()), actionCollection() );
|
|
|
|
|
|
|
|
|
|
// Edit
|
|
|
|
|
mRotateLeft=new TDEAction(i18n("Rotate &Left"),"rotate_left",CTRL + Key_L, this, TQ_SLOT(rotateLeft()),actionCollection(),"rotate_left");
|
|
|
|
|