22 #include "katemainwindow.h"
23 #include "katemainwindow.moc"
25 #include "kateconfigdialog.h"
26 #include "kateconsole.h"
27 #include "katedocmanager.h"
28 #include "katepluginmanager.h"
29 #include "kateconfigplugindialogpage.h"
30 #include "kateviewmanager.h"
32 #include "katefileselector.h"
33 #include "katefilelist.h"
34 #include "katesessionpanel.h"
35 #include "kategrepdialog.h"
36 #include "katemailfilesdialog.h"
37 #include "katemainwindowiface.h"
38 #include "kateexternaltools.h"
39 #include "katesavemodifieddialog.h"
40 #include "katemwmodonhddialog.h"
41 #include "katesession.h"
42 #include "katetabwidget.h"
44 #include "../interfaces/mainwindow.h"
45 #include "../interfaces/toolviewmanager.h"
47 #include <dcopclient.h>
48 #include <tdeinstance.h>
49 #include <tdeaboutdata.h>
50 #include <tdeaction.h>
51 #include <tdecmdlineargs.h>
53 #include <kdialogbase.h>
54 #include <tdediroperator.h>
55 #include <kdockwidget.h>
56 #include <kedittoolbar.h>
57 #include <tdefiledialog.h>
58 #include <kglobalaccel.h>
59 #include <tdeglobal.h>
60 #include <tdeglobalsettings.h>
61 #include <kiconloader.h>
62 #include <kkeydialog.h>
63 #include <tdelocale.h>
64 #include <tdemessagebox.h>
65 #include <kmimetype.h>
66 #include <kopenwith.h>
67 #include <tdepopupmenu.h>
68 #include <ksimpleconfig.h>
69 #include <kstatusbar.h>
70 #include <kstdaction.h>
71 #include <kstandarddirs.h>
73 #include <kuniqueapplication.h>
75 #include <kdesktopfile.h>
76 #include <khelpmenu.h>
77 #include <tdemultitabbar.h>
79 #include <tdemenubar.h>
80 #include <kstringhandler.h>
82 #include <tqptrvector.h>
88 uint KateMainWindow::uniqueID = 1;
90 KateMainWindow::KateMainWindow (TDEConfig *sconfig,
const TQString &sgroup)
91 : KateMDI::MainWindow (0,(TQString(TQString(
"__KateMainWindow#%1").arg(uniqueID))).latin1())
103 if (!initialGeometrySet())
105 int scnum = TQApplication::desktop()->screenNumber(parentWidget());
106 TQRect desk = TQApplication::desktop()->screenGeometry(scnum);
113 sconfig->setGroup (sgroup);
114 size.setWidth (sconfig->readNumEntry( TQString::fromLatin1(
"Width %1").arg(desk.width()), 0 ));
115 size.setHeight (sconfig->readNumEntry( TQString::fromLatin1(
"Height %1").arg(desk.height()), 0 ));
135 size.setWidth (
KateApp::self()->config()->readNumEntry( TQString::fromLatin1(
"Width %1").arg(desk.width()), 0 ));
136 size.setHeight (
KateApp::self()->config()->readNumEntry( TQString::fromLatin1(
"Height %1").arg(desk.height()), 0 ));
139 size = TQSize (kMin (700, desk.width()), kMin(480, desk.height()));
147 startRestore (sconfig, sgroup);
149 m_mainWindow =
new Kate::MainWindow (
this);
152 m_dcop =
new KateMainWindowDCOPIface (
this);
154 m_mainWindow->installEventFilter(
this);
162 setStandardToolBarMenuEnabled(
true );
163 setXMLFile(
"kateui.rc" );
164 createShellGUI (
true );
166 KatePluginManager::self()->enableAllPluginsGUI (
this);
169 Kate::Document::registerCommand(KateExternalToolsCommand::self());
172 documentMenu = (TQPopupMenu*)factory()->container(
"documents",
this);
173 connect(documentMenu, TQ_SIGNAL(aboutToShow()),
this, TQ_SLOT(documentMenuAboutToShow()));
176 for (uint i = 0; i < KateDocManager::self()->documents(); i++)
177 slotDocumentCreated (KateDocManager::self()->document(i));
179 connect(KateDocManager::self(),TQ_SIGNAL(documentCreated(Kate::Document *)),
this,TQ_SLOT(slotDocumentCreated(Kate::Document *)));
184 m_viewManager->restoreViewConfiguration (sconfig, sgroup);
188 setAcceptDrops(
true);
191 KateMainWindow::~KateMainWindow()
202 KatePluginManager::self()->disableAllPluginsGUI (
this);
207 void KateMainWindow::setupMainWindow ()
209 setToolViewStyle( KMultiTabBar::KDEV3ICON );
211 m_tabWidget =
new KateTabWidget (centralWidget());
213 m_viewManager =
new KateViewManager (
this);
215 KateMDI::ToolView *ft = createToolView(
"kate_filelist", KMultiTabBar::Left, SmallIcon(
"application-vnd.tde.tdemultiple"), i18n(
"Documents"));
216 filelist =
new KateFileList (
this, m_viewManager, ft,
"filelist");
218 filelist->viewport()->installEventFilter(
this);
220 KateMDI::ToolView *t = createToolView(
"kate_fileselector", KMultiTabBar::Left, SmallIcon(
"document-open"), i18n(
"Filesystem Browser"));
221 fileselector =
new KateFileSelector(
this, m_viewManager, t,
"operator");
222 connect(fileselector->dirOperator(),TQ_SIGNAL(fileSelected(
const KFileItem*)),
this,TQ_SLOT(fileSelected(
const KFileItem*)));
224 KateMDI::ToolView *st = createToolView(
"kate_sessionpanel", KMultiTabBar::Left, SmallIcon(
"view_choose"), i18n(
"Sessions"));
225 m_sessionpanel =
new KateSessionPanel(
this, m_viewManager, st,
"sessionpanel");
230 t = createToolView(
"kate_greptool", KMultiTabBar::Bottom, SmallIcon(
"filefind"), i18n(
"Find in Files") );
231 greptool =
new GrepTool( t,
"greptool" );
232 connect(greptool, TQ_SIGNAL(itemSelected(
const TQString &,
int)),
this, TQ_SLOT(slotGrepToolItemSelected(
const TQString &,
int)));
233 connect(t,TQ_SIGNAL(visibleChanged(
bool)),
this, TQ_SLOT(updateGrepDir (
bool)));
237 t = createToolView(
"kate_console", KMultiTabBar::Bottom, SmallIcon(
"konsole"), i18n(
"Terminal"));
245 void KateMainWindow::setupActions()
249 KStdAction::openNew( m_viewManager, TQ_SLOT( slotDocumentNew() ), actionCollection(),
"file_new" )->setWhatsThis(i18n(
"Create a new document"));
250 KStdAction::open( m_viewManager, TQ_SLOT( slotDocumentOpen() ), actionCollection(),
"file_open" )->setWhatsThis(i18n(
"Open an existing document for editing"));
252 fileOpenRecent = KStdAction::openRecent (m_viewManager, TQ_SLOT(openURL (
const KURL&)), actionCollection());
253 fileOpenRecent->setWhatsThis(i18n(
"This lists files which you have opened recently, and allows you to easily open them again."));
255 a=
new TDEAction( i18n(
"Save A&ll"),
"save_all", CTRL+Key_L, KateDocManager::self(), TQ_SLOT( saveAll() ), actionCollection(),
"file_save_all" );
256 a->setWhatsThis(i18n(
"Save all open, modified documents to disk."));
258 KStdAction::close( m_viewManager, TQ_SLOT( slotDocumentClose() ), actionCollection(),
"file_close" )->setWhatsThis(i18n(
"Close the current document."));
260 a=
new TDEAction( i18n(
"Clos&e All" ), 0,
this, TQ_SLOT( slotDocumentCloseAll() ), actionCollection(),
"file_close_all" );
261 a->setWhatsThis(i18n(
"Close all open documents."));
263 KStdAction::mail(
this, TQ_SLOT(slotMail()), actionCollection() )->setWhatsThis(i18n(
"Send one or more of the open documents as email attachments."));
265 KStdAction::quit(
this, TQ_SLOT( slotFileQuit() ), actionCollection(),
"file_quit" )->setWhatsThis(i18n(
"Close this window"));
267 a=
new TDEAction(i18n(
"&New Window"),
"window-new", 0,
this, TQ_SLOT(newWindow()), actionCollection(),
"view_new_view");
268 a->setWhatsThis(i18n(
"Create a new Kate view (a new window with the same document list)."));
273 externalTools->setWhatsThis( i18n(
"Launch external helper applications") );
276 TDEToggleAction* showFullScreenAction = KStdAction::fullScreen( 0, 0, actionCollection(),
this);
277 connect( showFullScreenAction,TQ_SIGNAL(toggled(
bool)),
this,TQ_SLOT(slotFullScreen(
bool)));
279 documentOpenWith =
new TDEActionMenu(i18n(
"Open W&ith"), actionCollection(),
"file_open_with");
280 documentOpenWith->setWhatsThis(i18n(
"Open the current document using another application registered for its file type, or an application of your choice."));
281 connect(documentOpenWith->popupMenu(), TQ_SIGNAL(aboutToShow()),
this, TQ_SLOT(mSlotFixOpenWithMenu()));
282 connect(documentOpenWith->popupMenu(), TQ_SIGNAL(activated(
int)),
this, TQ_SLOT(slotOpenWithMenuAction(
int)));
284 a=KStdAction::keyBindings(
this, TQ_SLOT(editKeys()), actionCollection());
285 a->setWhatsThis(i18n(
"Configure the application's keyboard shortcut assignments."));
287 a=KStdAction::configureToolbars(
this, TQ_SLOT(slotEditToolbars()), actionCollection());
288 a->setWhatsThis(i18n(
"Configure which items should appear in the toolbar(s)."));
290 TDEAction* settingsConfigure = KStdAction::preferences(
this, TQ_SLOT(slotConfigure()), actionCollection(),
"settings_configure");
291 settingsConfigure->setWhatsThis(i18n(
"Configure various aspects of this application and the editing component."));
295 new TDEAction(i18n(
"&Pipe to Console"),
"pipe", 0, console, TQ_SLOT(slotPipeToConsole()), actionCollection(),
"tools_pipe_to_terminal");
298 KStdAction::tipOfDay(
this, TQ_SLOT( tipOfTheDay() ), actionCollection() )->setWhatsThis(i18n(
"This shows useful tips on the use of this application."));
300 if (KatePluginManager::self()->pluginList().count() > 0)
302 a=
new TDEAction(i18n(
"&Plugins Handbook"), 0,
this, TQ_SLOT(pluginHelp()), actionCollection(),
"help_plugins_contents");
303 a->setWhatsThis(i18n(
"This shows help files for various available plugins."));
306 connect(m_viewManager,TQ_SIGNAL(viewChanged()),
this,TQ_SLOT(slotWindowActivated()));
307 connect(m_viewManager,TQ_SIGNAL(viewChanged()),
this,TQ_SLOT(slotUpdateOpenWith()));
309 slotWindowActivated ();
312 new TDEAction(i18n(
"&New"),
"list-add", 0,
313 m_sessionpanel, TQ_SLOT(slotNewSession()), actionCollection(),
"session_new");
314 new TDEAction(i18n(
"&Save"),
"document-save", 0,
315 m_sessionpanel, TQ_SLOT(slotSaveSession()), actionCollection(),
"session_save");
316 new TDEAction(i18n(
"Save &As..."),
"document-save-as", 0,
317 m_sessionpanel, TQ_SLOT(slotSaveSessionAs()), actionCollection(),
"session_save_as");
318 new TDEAction(i18n(
"&Rename"),
"edit_user", 0,
319 m_sessionpanel, TQ_SLOT(slotRenameSession()), actionCollection(),
"session_rename");
320 new TDEAction(i18n(
"&Delete"),
"edit-delete", 0,
321 m_sessionpanel, TQ_SLOT(slotDeleteSession()), actionCollection(),
"session_delete");
322 new TDEAction(i18n(
"Re&load"),
"reload", 0,
323 m_sessionpanel, TQ_SLOT(slotReloadSession()), actionCollection(),
"session_reload");
324 new TDEAction(i18n(
"Acti&vate"),
"forward", 0,
325 m_sessionpanel, TQ_SLOT(slotActivateSession()), actionCollection(),
"session_activate");
326 new TDEToggleAction(i18n(
"Toggle read &only"),
"encrypted", 0,
327 m_sessionpanel, TQ_SLOT(slotSessionToggleReadOnly()), actionCollection(),
"session_toggle_read_only");
328 new TDEAction(i18n(
"Move &Up"),
"go-up", 0,
329 m_sessionpanel, TQ_SLOT(slotSessionMoveUp()), actionCollection(),
"session_move_up");
330 new TDEAction(i18n(
"Move Do&wn"),
"go-down", 0,
331 m_sessionpanel, TQ_SLOT(slotSessionMoveDown()), actionCollection(),
"session_move_down");
332 new KateSessionListActionMenu(
this, i18n(
"Sele&ct session"), actionCollection(),
"session_list");
334 connect(m_sessionpanel, TQ_SIGNAL(selectionChanged()),
this, TQ_SLOT(slotSelectionChanged()));
337 KateTabWidget *KateMainWindow::tabWidget ()
342 void KateMainWindow::slotDocumentCloseAll() {
343 if (queryCloseAllDocuments())
344 KateDocManager::self()->closeAllDocuments(
false);
348 bool KateMainWindow::queryCloseAllDocuments() {
349 uint documentCount=KateDocManager::self()->documents();
351 if ( !showModOnDiskPrompt() )
356 TQPtrList<Kate::Document> modifiedDocuments=KateDocManager::self()->modifiedDocumentList();
357 bool closeOK = (modifiedDocuments.count() == 0);
361 closeOK = KateSaveModifiedDialog::queryClose(
this,modifiedDocuments);
364 if ( KateDocManager::self()->documents() > documentCount ) {
365 KMessageBox::information (
this,
366 i18n (
"New file opened while trying to close all other documents, closing aborted."),
367 i18n (
"Closing Aborted"));
374 bool KateMainWindow::queryClose_internal() {
375 if (!queryCloseAllDocuments())
384 bool KateMainWindow::queryClose()
390 return queryClose_internal();
402 if (queryClose_internal())
412 void KateMainWindow::newWindow ()
417 void KateMainWindow::slotEditToolbars()
419 saveMainWindowSettings(
KateApp::self()->config(),
"MainWindow" );
420 KEditToolbar dlg( factory() );
421 connect( &dlg, TQ_SIGNAL(newToolbarConfig()),
this, TQ_SLOT(slotNewToolbarConfig()) );
425 void KateMainWindow::slotNewToolbarConfig()
427 applyMainWindowSettings(
KateApp::self()->config(),
"MainWindow" );
430 void KateMainWindow::slotFileQuit()
435 void KateMainWindow::readOptions ()
439 config->setGroup(
"General");
440 showSessionName = config->readBoolEntry(
"Show session name",
false);
441 syncKonsole = config->readBoolEntry(
"Sync Konsole",
true);
442 useInstance = config->readBoolEntry(
"UseInstance",
false);
443 modNotification = config->readBoolEntry(
"Modified Notification",
false);
444 KateDocManager::self()->setSaveMetaInfos(config->readBoolEntry(
"Save Meta Infos",
true));
445 KateDocManager::self()->setDaysMetaInfos(config->readNumEntry(
"Days Meta Infos", 30));
447 m_viewManager->setShowFullPath(config->readBoolEntry(
"Show Full Path in Title",
false));
449 fileOpenRecent->setMaxItems( config->readNumEntry(
"Number of recent files", fileOpenRecent->maxItems() ) );
450 fileOpenRecent->loadEntries(config,
"Recent Files");
452 fileselector->readConfig(config,
"fileselector");
455 void KateMainWindow::saveOptions ()
458 config->setGroup(
"General");
461 config->writeEntry(
"Show Console", console->isVisible());
463 config->writeEntry(
"Show Console",
false);
465 config->writeEntry(
"Show session name", showSessionName);
466 config->writeEntry(
"Save Meta Infos", KateDocManager::self()->getSaveMetaInfos());
467 config->writeEntry(
"Days Meta Infos", KateDocManager::self()->getDaysMetaInfos());
468 config->writeEntry(
"Show Full Path in Title", m_viewManager->getShowFullPath());
469 config->writeEntry(
"Sync Konsole", syncKonsole);
470 config->writeEntry(
"UseInstance", useInstance);
472 fileOpenRecent->saveEntries(config,
"Recent Files");
473 fileselector->writeConfig(config,
"fileselector");
474 filelist->writeConfig(config,
"Filelist");
479 void KateMainWindow::slotWindowActivated ()
481 if (m_viewManager->activeView())
483 if (console && syncKonsole)
485 static TQString path;
486 TQString newPath = m_viewManager->activeView()->getDoc()->url().directory();
488 if ( newPath != path )
491 console->cd (KURL( path ));
495 updateCaption (m_viewManager->activeView()->getDoc());
499 centralWidget()->setFocusProxy (m_viewManager->activeView());
502 void KateMainWindow::slotUpdateOpenWith()
504 if (m_viewManager->activeView())
505 documentOpenWith->setEnabled(!m_viewManager->activeView()->document()->url().isEmpty());
507 documentOpenWith->setEnabled(
false);
510 void KateMainWindow::documentMenuAboutToShow()
513 while (documentMenu->count() > 3)
514 documentMenu->removeItemAt (3);
516 TQListViewItem * item = filelist->firstChild();
519 TQString name = KStringHandler::rsqueeze( ((KateFileListItem *)item)->document()->docName(), 150 );
520 Kate::Document* doc = ((KateFileListItem *)item)->document();
521 documentMenu->insertItem (
522 doc->isModified() ? i18n(
"'document name [*]', [*] means modified",
"%1 [*]").arg(name) : name,
523 m_viewManager, TQ_SLOT (activateView (
int)), 0,
524 ((KateFileListItem *)item)->documentNumber () );
526 item = item->nextSibling();
528 if (m_viewManager->activeView())
529 documentMenu->setItemChecked ( m_viewManager->activeView()->getDoc()->documentNumber(),
true);
532 void KateMainWindow::slotGrepToolItemSelected(
const TQString &filename,
int linenumber)
535 fileURL.setPath( filename );
536 m_viewManager->openURL( fileURL );
537 if ( m_viewManager->activeView() == 0 )
return;
538 m_viewManager->activeView()->gotoLineNumber( linenumber );
543 void KateMainWindow::dragEnterEvent( TQDragEnterEvent *event )
545 event->accept(KURLDrag::canDecode(event));
548 void KateMainWindow::dropEvent( TQDropEvent *event )
550 slotDropEvent(event);
553 void KateMainWindow::slotDropEvent( TQDropEvent * event )
556 if (!KURLDrag::decode(event, textlist))
return;
558 for (KURL::List::Iterator i=textlist.begin(); i != textlist.end(); ++i)
560 m_viewManager->openURL (*i);
564 void KateMainWindow::editKeys()
566 KKeyDialog dlg (
false,
this );
568 TQPtrList<KXMLGUIClient> clients = guiFactory()->clients();
570 for( TQPtrListIterator<KXMLGUIClient> it( clients ); it.current(); ++it )
571 dlg.insert ( (*it)->actionCollection(), (*it)->instance()->aboutData()->programName() );
573 dlg.insert( externalTools->actionCollection(), i18n(
"External Tools") );
577 TQPtrList<Kate::Document> l=KateDocManager::self()->documentList();
578 for (uint i=0;i<l.count();i++) {
580 l.at(i)->reloadXML();
581 TQPtrList<class KTextEditor::View> l1=l.at(i)->views ();
582 for (uint i1=0;i1<l1.count();i1++) {
583 l1.at(i1)->reloadXML();
588 externalTools->actionCollection()->writeShortcutSettings(
"Shortcuts",
new TDEConfig(
"externaltools",
false,
false,
"appdata") );
591 void KateMainWindow::openURL (
const TQString &name)
593 m_viewManager->openURL (KURL(name));
596 void KateMainWindow::slotConfigure()
598 if (!m_viewManager->activeView())
601 KateConfigDialog* dlg =
new KateConfigDialog (
this, m_viewManager->activeView());
610 KURL KateMainWindow::activeDocumentUrl()
614 Kate::View *v = m_viewManager->activeView();
616 return v->getDoc()->url();
620 void KateMainWindow::fileSelected(
const KFileItem * )
622 const KFileItemList *list=fileselector->dirOperator()->selectedItems();
624 for (KFileItemListIterator it(*list); (tmp = it.current()); ++it)
626 m_viewManager->openURL(tmp->url());
627 fileselector->dirOperator()->view()->setSelected(tmp,
false);
632 void KateMainWindow::mSlotFixOpenWithMenu()
635 documentOpenWith->popupMenu()->clear();
637 KMimeType::Ptr mime = KMimeType::findByURL( m_viewManager->activeView()->getDoc()->url() );
640 TDETrader::OfferList offers = TDETrader::self()->query(mime->name(),
"Type == 'Application'");
642 for(TDETrader::OfferList::Iterator it = offers.begin(); it != offers.end(); ++it) {
643 if ((*it)->name() ==
"Kate")
continue;
644 documentOpenWith->popupMenu()->insertItem( SmallIcon( (*it)->icon() ), (*it)->name() );
647 documentOpenWith->popupMenu()->insertItem(i18n(
"&Other..."));
650 void KateMainWindow::slotOpenWithMenuAction(
int idx)
653 list.append( m_viewManager->activeView()->getDoc()->url() );
654 TQString appname = documentOpenWith->popupMenu()->text(idx);
656 appname = appname.remove(
'&');
657 if ( appname.compare(i18n(
"Other...")) == 0 ) {
659 KOpenWithDlg dlg(list);
661 KRun::run(*dlg.service(), list);
665 TQString qry = TQString(
"((Type == 'Application') and (Name == '%1'))").arg( appname.latin1() );
666 KMimeType::Ptr mime = KMimeType::findByURL( m_viewManager->activeView()->getDoc()->url() );
667 TDETrader::OfferList offers = TDETrader::self()->query(mime->name(), qry);
669 if (!offers.isEmpty()) {
670 KService::Ptr app = offers.first();
671 KRun::run(*app, list);
674 KMessageBox::error(
this, i18n(
"Application '%1' not found!").arg(appname.latin1()), i18n(
"Application Not Found!"));
677 void KateMainWindow::pluginHelp()
679 KateApp::self()->invokeHelp (TQString::null,
"kate-plugins");
682 void KateMainWindow::slotMail()
695 TQPtrListIterator<Kate::Document> it(attDocs);
696 for ( ; it.current(); ++it ) {
699 if ( doc->url().isEmpty() ) {
701 int r = KMessageBox::questionYesNo(
this,
702 i18n(
"<p>The current document has not been saved, and "
703 "cannot be attached to an email message."
704 "<p>Do you want to save it and proceed?"),
705 i18n(
"Cannot Send Unsaved File"),KStdGuiItem::saveAs(),KStdGuiItem::cancel() );
706 if ( r == KMessageBox::Yes ) {
707 Kate::View *v = (Kate::View*)doc->views().first();
708 int sr = v->saveAs();
709 if ( sr == Kate::View::SAVE_OK ) { ;
712 if ( sr != Kate::View::SAVE_CANCEL )
713 KMessageBox::sorry(
this, i18n(
"The file could not be saved. Please check "
714 "if you have write permission.") );
721 if ( doc->isModified() ) {
723 int r = KMessageBox::warningYesNoCancel(
this,
724 i18n(
"<p>The current file:<br><strong>%1</strong><br>has been "
725 "modified. Modifications will not be available in the attachment."
726 "<p>Do you want to save it before sending it?").arg(doc->url().prettyURL()),
727 i18n(
"Save Before Sending?"), KStdGuiItem::save(), i18n(
"Do Not Save") );
729 case KMessageBox::Cancel:
731 case KMessageBox::Yes:
733 if ( doc->isModified() ) {
734 KMessageBox::sorry(
this, i18n(
"The file could not be saved. Please check "
735 "if you have write permission.") );
744 urls << doc->url().url();
746 if ( ! urls.count() )
757 void KateMainWindow::tipOfTheDay()
759 KTipDialog::showTip(
this, TQString::null,
true );
762 void KateMainWindow::slotFullScreen(
bool t)
770 void KateMainWindow::updateGrepDir (
bool visible)
776 if ( m_viewManager->activeView() )
778 if ( m_viewManager->activeView()->getDoc()->url().isLocalFile() )
780 greptool->updateDirName( m_viewManager->activeView()->getDoc()->url().directory() );
785 bool KateMainWindow::event( TQEvent *e )
787 uint type = e->type();
788 if ( type == TQEvent::WindowActivate && modNotification )
790 showModOnDiskPrompt();
792 return KateMDI::MainWindow::event( e );
795 bool KateMainWindow::showModOnDiskPrompt()
799 DocVector list( KateDocManager::self()->documents() );
801 for( doc = KateDocManager::self()->firstDocument(); doc; doc = KateDocManager::self()->nextDocument() )
803 if ( KateDocManager::self()->documentInfo( doc )->modifiedOnDisc )
805 list.insert( cnt, doc );
810 if ( cnt && !m_modignore )
815 bool res = mhdlg.exec();
823 void KateMainWindow::slotDocumentCreated (Kate::Document *doc)
825 connect(doc,TQ_SIGNAL(modStateChanged(Kate::Document *)),
this,TQ_SLOT(updateCaption(Kate::Document *)));
826 connect(doc,TQ_SIGNAL(nameChanged(Kate::Document *)),
this,TQ_SLOT(slotNameChanged(Kate::Document *)));
827 connect(doc,TQ_SIGNAL(nameChanged(Kate::Document *)),
this,TQ_SLOT(slotUpdateOpenWith()));
832 void KateMainWindow::slotNameChanged(Kate::Document *doc)
835 if (!doc->url().isEmpty())
836 fileOpenRecent->addURL(doc->url());
839 void KateMainWindow::updateCaption(Kate::Document *doc)
841 if (!m_viewManager->activeView())
843 setCaption (
"",
false);
847 if (!(m_viewManager->activeView()->getDoc() == doc))
851 if (m_viewManager->activeView()->getDoc()->url().isEmpty() || (!m_viewManager->getShowFullPath()))
853 c = m_viewManager->activeView()->getDoc()->docName();
857 c = m_viewManager->activeView()->getDoc()->url().pathOrURL();
863 if (!sessName.isEmpty())
865 sessName = TQString(
"%1: ").arg(sessName);
867 setCaption(KStringHandler::lsqueeze(sessName,32) + KStringHandler::lsqueeze(c,64),
868 m_viewManager->activeView()->getDoc()->isModified());
872 setCaption(KStringHandler::lsqueeze(c,64), m_viewManager->activeView()->getDoc()->isModified());
876 void KateMainWindow::saveProperties(TDEConfig *config)
878 TQString grp=config->group();
880 saveSession(config, grp);
881 m_viewManager->saveViewConfiguration (config, grp);
883 config->setGroup(grp);
886 void KateMainWindow::readProperties(TDEConfig *config)
888 TQString grp=config->group();
890 startRestore(config, grp);
892 m_viewManager->restoreViewConfiguration (config, grp);
894 config->setGroup(grp);
897 bool KateMainWindow::eventFilter(TQObject *obj, TQEvent *ev)
899 if (ev->type() == TQEvent::MouseButtonRelease)
901 TQMouseEvent *mouseEvent =
static_cast<TQMouseEvent *
>(ev);
902 switch (mouseEvent->button())
904 case TQMouseEvent::HistoryBackButton:
905 filelist->slotPrevDocument();
907 case TQMouseEvent::HistoryForwardButton:
908 filelist->slotNextDocument();
916 void KateMainWindow::slotSelectionChanged()
918 TDEActionCollection *mwac = actionCollection();
919 TDEActionPtrList actionList = m_sessionpanel->m_actionCollection->actions();
920 TDEActionPtrList::ConstIterator spa_it;
921 for (spa_it = actionList.begin(); spa_it != actionList.end(); ++spa_it)
923 TDEAction *a = mwac->action((*spa_it)->name());
924 TDEToggleAction *ta =
dynamic_cast<TDEToggleAction*
>(a);
927 ta->setChecked((
dynamic_cast<TDEToggleAction*
>(*spa_it))->isChecked());
931 a->setEnabled((*spa_it)->isEnabled());
937 void KateMainWindow::activateSession(
int sessionId)
939 if (sessionId < 0 || sessionId ==
KateApp::self()->sessionManager()->getActiveSessionId())
945 TQListViewItem *item = m_sessionpanel->m_listview->firstChild();
947 while (item && idx < sessionId)
949 item = item->nextSibling();
952 if (idx == sessionId && item)
955 m_sessionpanel->m_listview->setSelected(item,
true);
956 m_sessionpanel->slotActivateSession();
961 KateSessionListActionMenu::KateSessionListActionMenu(KateMainWindow *mw,
const TQString &text, TQObject *parent,
const char *name)
962 : TDEActionMenu(text, parent, name), m_mainWindow(mw)
964 connect(popupMenu(), TQ_SIGNAL(aboutToShow()),
this, TQ_SLOT(slotAboutToShow()));
968 void KateSessionListActionMenu::slotAboutToShow()
970 popupMenu()->clear();
973 for (
int idx = 0; idx < (int)sessions.count(); ++idx)
975 popupMenu()->insertItem(sessions[idx]->getSessionName(), m_mainWindow, TQ_SLOT(activateSession(
int)), 0, idx);