1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
|
%{CPP_TEMPLATE}
#include <qdragobject.h>
#include <qpainter.h>
#include <qpaintdevicemetrics.h>
#include <qdragobject.h>
#include <qstatusbar.h>
#include <qtoolbutton.h>
#include <kdebug.h>
#include <kglobal.h>
#include <ktip.h>
#include <kparts/part.h>
#include <kparts/partmanager.h>
#include <kio/netaccess.h>
#include <kurl.h>
#include <kurldrag.h>
#include <kurlrequesterdlg.h>
#include <kconfig.h>
#include <kconfigdialog.h>
#include <klibloader.h>
#include <kaboutdata.h>
#include <kfiledialog.h>
#include <kactionclasses.h>
#include <kglobal.h>
#include <klocale.h>
#include <kiconloader.h>
#include <kdeversion.h>
#include <kmenubar.h>
#include <kstatusbar.h>
#include <kkeydialog.h>
#include <kmessagebox.h>
#include <ktabwidget.h>
#include <kedittoolbar.h>
#include <kdeversion.h>
#include <kstdaccel.h>
#include <kaction.h>
#include <kstdaction.h>
#include "settings.h"
#include "prefs.h"
#include "%{APPNAMELC}kmdiView.h"
#include "kmdikonsole.h"
#include "%{APPNAMELC}kmdi.h"
%{APPNAMELC}kmdi::%{APPNAMELC}kmdi(KMdi::MdiMode mode)
: KMdiMainFrm( 0, "%{APPNAMELC}", mode )
{
resize( 800, 600 ); // start at 800x600 the first time
setManagedDockPositionModeEnabled(true);
setStandardMDIMenuEnabled(false);
m_manager = new KParts::PartManager(this);
connect(m_manager, SIGNAL(activePartChanged(KParts::Part*)),
this, SLOT(createGUI(KParts::Part*)) );
#if KDE_IS_VERSION(3, 3, 0)
setToolviewStyle( KMdi::TextAndIcon );
tabWidget()->setHoverCloseButton( false );
#endif
setMenuForSDIModeSysButtons( menuBar() );
setManagedDockPositionModeEnabled(true);
m_console = NULL;
// accept dnd
setAcceptDrops(true);
// then, setup our actions
setupActions();
//createShellGUI( true );
// and a status bar
statusBar()->show();
connect( this, SIGNAL( viewActivated( KMdiChildView * ) ), this, SLOT( currentChanged( KMdiChildView * ) ) );
m_console = new kmdikonsole(this, "konsole");
m_console->setIcon( SmallIcon("konsole") );
m_console->setCaption( i18n("Terminal") );
addToolWindow( m_console, KDockWidget::DockBottom, getMainDockWidget(), 20 );
#if KDE_IS_VERSION(3, 3, 0)
if (Settings::showCloseTabsButton())
{
QToolButton *but = new QToolButton(tabWidget());
but->setIconSet(SmallIcon("tab_remove"));
but->adjustSize();
but->hide();
connect(but, SIGNAL(clicked()), actionCollection()->action( "file_close" ), SIGNAL(activated()));
tabWidget()->setCornerWidget(but, TopRight);
}
#endif
// apply the saved mainwindow settings, if any, and ask the mainwindow
// to automatically save settings if changed: window size, toolbar
// position, icon size, etc.
setAutoSaveSettings();
// Read the dock config only if the app was started at least only once - kmdi is tricky
KConfig *cfg = new KConfig("%{APPNAMELC}_dockposrc");
if (cfg->readNumEntry("%{APPNAMELC}_main_dock_settings", 0) == 1) manager()->readConfig(cfg);
cfg->writeEntry("%{APPNAMELC}_main_dock_settings", 1);
delete cfg;
showTipOnStart();
}
%{APPNAMELC}kmdi::~%{APPNAMELC}kmdi()
{
// Write the dock config on exit
KConfig *cfg = new KConfig("%{APPNAMELC}_dockposrc");
manager()->writeConfig(cfg);
delete cfg;
delete m_console;
}
void %{APPNAMELC}kmdi::setupActions()
{
setXMLFile("%{APPNAMELC}_shell.rc");
KStdAction::openNew(this, SLOT(slotFileNew()), actionCollection());
KStdAction::tipOfDay( this, SLOT( showTip() ), actionCollection()
)->setWhatsThis(i18n("This shows useful tips on the use of this application."));
KStdAction::close(this, SLOT(slotFileClose()), actionCollection());
KStdAction::quit(this, SLOT(slotFileQuit()), actionCollection());
m_toolbarAction = KStdAction::showToolbar(this, SLOT(optionsShowToolbar()), actionCollection());
m_statusbarAction = KStdAction::showStatusbar(this, SLOT(optionsShowStatusbar()), actionCollection());
KStdAction::keyBindings(this, SLOT(optionsConfigureKeys()), actionCollection());
KStdAction::preferences(this, SLOT(optionsPreferences()), actionCollection());
KAction* action = KStdAction::configureToolbars(this,
SLOT(optionsConfigureToolbars()), actionCollection());
createGUI( NULL );
}
void %{APPNAMELC}kmdi::showTip()
{
KTipDialog::showTip(this,QString::null,true);
}
void %{APPNAMELC}kmdi::showTipOnStart()
{
KTipDialog::showTip(this);
}
void %{APPNAMELC}kmdi::slotFileNew()
{
%{APPNAMELC}kmdiView *view = new %{APPNAMELC}kmdiView(this);
m_manager->addPart( view->part() );
addWindow( view );
// add the tree view to the widget stack
m_views += view;
currentChanged( view );
}
void %{APPNAMELC}kmdi::openURL(const KURL & url)
{
// check if the url is not already opened first
QValueList<%{APPNAMELC}kmdiView*>::iterator it = m_views.begin();
QValueList<%{APPNAMELC}kmdiView*>::iterator end = m_views.end();
for (; it != end; ++it)
{
%{APPNAMELC}kmdiView *view = *it;
if (view->part()->url() == url)
{
activateView(view);
return;
}
}
%{APPNAMELC}kmdiView *view = new %{APPNAMELC}kmdiView(this);
m_manager->addPart( view->part() );
addWindow( view );
m_views += view;
view->part()->openURL(url);
currentChanged( view );
}
void %{APPNAMELC}kmdi::currentChanged( KMdiChildView *current )
{
//kdWarning()<<"current view changed"<<endl;
if (!current)
{
m_manager->setActivePart(NULL);
//setCaption("()");
return;
}
// switch to the corresponding document
if ( m_views.contains( (%{APPNAMELC}kmdiView*) current ) )
{
%{APPNAMELC}kmdiView *view = (%{APPNAMELC}kmdiView*) current;
//view->updateCaption();
m_manager->setActivePart( view->part() );
}
}
void %{APPNAMELC}kmdi::slotFileClose()
{
requestClose( activeWindow() );
}
bool %{APPNAMELC}kmdi::requestClose(KMdiChildView* v)
{
// kdWarning()<<"closing view"<<v<<endl;
// if (view == NULL)
// return;
if (v == NULL)
{
if ( m_views.count() == 1)
{
%{APPNAMELC}kmdiView *view = m_views[0];
if (view->part()->queryClose())
{
m_manager->removePart( view->part() );
closeWindow( view );
m_views.clear();
setCaption("kdissert");
return true;
}
return false;
}
return true;
}
%{APPNAMELC}kmdiView *view = (%{APPNAMELC}kmdiView*) v;
if ( m_views.contains( view ) )
{
m_views.remove( view );
if ( view->part()->queryClose() )
{
m_manager->removePart( view->part() );
closeWindow( view );
return true;
}
return false;
}
return true;
}
void %{APPNAMELC}kmdi::slotFileQuit()
{
close();
}
void %{APPNAMELC}kmdi::optionsShowToolbar()
{
if (m_toolbarAction->isChecked())
toolBar()->show();
else
toolBar()->hide();
}
void %{APPNAMELC}kmdi::optionsShowStatusbar()
{
if (m_statusbarAction->isChecked())
statusBar()->show();
else
statusBar()->hide();
}
void %{APPNAMELC}kmdi::optionsConfigureKeys()
{
//KKeyDialog::configure(actionCollection());
KKeyDialog dlg( false, this );
QPtrList<KXMLGUIClient> clients = guiFactory()->clients();
for( QPtrListIterator<KXMLGUIClient> it( clients ); it.current(); ++it )
dlg.insert ( (*it)->actionCollection(), (*it)->instance()->aboutData()->programName() );
dlg.configure();
for (int i=0; i<m_views.count(); i++)
{
m_views[i]->part()->reloadXML();
}
}
void %{APPNAMELC}kmdi::optionsConfigureToolbars()
{
//saveMainWindowSettings(KGlobal::config(), autoSaveGroup());
}
void %{APPNAMELC}kmdi::newToolbarConfig()
{
// This slot is called when user clicks "Ok" or "Apply" in the toolbar editor.
// recreate our GUI, and re-apply the settings (e.g. "text under icons", etc.)
//createGUI();
//applyMainWindowSettings(KGlobal::config(), autoSaveGroup());
}
void %{APPNAMELC}kmdi::optionsPreferences()
{
// The preference dialog is derived from prefs-base.ui which is subclassed into Prefs
//
// compare the names of the widgets in the .ui file
// to the names of the variables in the .kcfg file
if (KConfigDialog::showDialog("settings"))
return;
KConfigDialog *dialog = new KConfigDialog(this, "settings", Settings::self(), KDialogBase::Swallow);
dialog->addPage(new prefs(), i18n("General"), "package_settings");
connect(dialog, SIGNAL(settingsChanged()), this, SLOT(settingsChanged()));
dialog->show();
}
void %{APPNAMELC}kmdi::settingsChanged()
{
// propagate the changes to our views
/*QValueList<%{APPNAMELC}kmdiView*>::iterator it = m_views.begin();
QValueList<%{APPNAMELC}kmdiView*>::iterator end = m_views.end();
for (; it != end; ++it)
{
%{APPNAMELC}kmdiView *view = *it;
view->settingsChanged();
}*/
}
void %{APPNAMELC}kmdi::changeStatusbar(const QString& text)
{
// display the text on the statusbar
statusBar()->message(text, 2000);
}
void %{APPNAMELC}kmdi::dragEnterEvent(QDragEnterEvent *event)
{
// accept uri drops only
event->accept(KURLDrag::canDecode(event));
}
void %{APPNAMELC}kmdi::dropEvent(QDropEvent *event)
{
KURL::List urls;
// see if we can decode a URI.. if not, just ignore it
if (KURLDrag::decode(event, urls) && !urls.isEmpty())
{
// okay, we have a URI.. process it
const KURL &url = urls.first();
// load in the file
openURL(url);
}
}
bool %{APPNAMELC}kmdi::queryClose()
{
QValueList<%{APPNAMELC}kmdiView*>::iterator it;
// check if we can close all documents
for (it = m_views.begin(); it != m_views.end(); ++it)
{
// kdWarning()<<"searching for the part"<<endl;
%{APPNAMELC}kmdiView *view = *it;
if (!view->part()->queryClose())
{
return false;
}
}
// and now close the documents
for (it = m_views.begin(); it != m_views.end(); ++it)
{
// now close all views
%{APPNAMELC}kmdiView *view = *it;
m_manager->removePart( view->part() );
closeWindow( view );
}
return true;
}
#include "%{APPNAMELC}kmdi.moc"
|