MdiWindow based editor : Window « Qt « C++

Home
C++
1.Bitset
2.Class
3.Console
4.Data Structure
5.Data Type
6.Deque
7.Development
8.File
9.Function
10.Generic
11.Language
12.List
13.Map Multimap
14.Overload
15.Pointer
16.Qt
17.Queue Stack
18.Set Multiset
19.STL Algorithms Binary search
20.STL Algorithms Heap
21.STL Algorithms Helper
22.STL Algorithms Iterator
23.STL Algorithms Merge
24.STL Algorithms Min Max
25.STL Algorithms Modifying sequence operations
26.STL Algorithms Non modifying sequence operations
27.STL Algorithms Sorting
28.STL Basics
29.String
30.Valarray
31.Vector
C / ANSI-C
C Tutorial
C++ Tutorial
Visual C++ .NET
C++ » Qt » WindowScreenshots 
MdiWindow based editor
  

Foundations of Qt Development\Chapter04\mdi\documentwindow.cpp
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include <QApplication>
#include <QMenuBar>
#include <QToolBar>
#include <QStatusBar>
#include <QCloseEvent>
#include <QMessageBox>

#include <QTextEdit>

#include "documentwindow.h"

DocumentWindow::DocumentWindowQWidget *parent : QTextEditparent )
{
  setAttributeQt::WA_DeleteOnClose );
  setWindowTitletr("%1[*]" ).arg("unnamed") );
  
  connectdocument(), SIGNAL(modificationChanged(bool)), this, SLOT(setWindowModified(bool)) );
}
  
void DocumentWindow::closeEventQCloseEvent *event )
{
  ifisSafeToClose() )
    event->accept();
  else
    event->ignore();
}

bool DocumentWindow::isSafeToClose()
{
  ifdocument()->isModified() ) 
  {
    switchQMessageBox::warningthis, tr("MDI")
      tr("The document has unsaved changes.\n"
         "Do you want to save it before it is closed?")
         QMessageBox::Discard | QMessageBox::Cancel ) )
    {
    case QMessageBox::Cancel:
      return false;
    default:
      return true;
    }
  }

  return true;
}



Foundations of Qt Development\Chapter04\mdi\documentwindow.h
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#ifndef DOCUMENTWINDOW_H
#define DOCUMENTWINDOW_H

#include <QTextEdit>

class DocumentWindow : public QTextEdit
{
  Q_OBJECT
  
public:
  DocumentWindowQWidget *parent = );
  
protected:
  void closeEventQCloseEvent *event );
  
private:
  bool isSafeToClose();
};
  
#endif // DOCUMENTWINDOW_H



Foundations of Qt Development\Chapter04\mdi\main.cpp
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include <QApplication>

#include "mdiwindow.h"

int mainint argc, char **argv )
{
  QApplication appargc, argv );
  
  MdiWindow win;
  win.show();
  
  return app.exec();
}



Foundations of Qt Development\Chapter04\mdi\mdiwindow.cpp
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#include <QApplication>
#include <QMenuBar>
#include <QToolBar>
#include <QStatusBar>
#include <QCloseEvent>
#include <QMessageBox>

#include <QWorkspace>
#include <QSignalMapper>

#include "mdiwindow.h"

#include "documentwindow.h"

MdiWindow::MdiWindowQWidget *parent : QMainWindowparent )
{
  setWindowTitletr"MDI" ) );

  workspace = new QWorkspace;
  setCentralWidgetworkspace );
  
  connectworkspace, SIGNAL(windowActivated(QWidget *)), this, SLOT(enableActions()));
  mapper = new QSignalMapperthis );
  connectmapper, SIGNAL(mapped(QWidget*)), workspace, SLOT(setActiveWindow(QWidget*)) );

  createActions();
  createMenus();
  createToolbars();
  statusBar()->showMessagetr("Done") );
  
  enableActions();
}
  
void MdiWindow::closeEventQCloseEvent *event )
{
  workspace->closeAllWindows();

  if!activeDocument() )
    event->accept();
  else
    event->ignore();
}
  
void MdiWindow::fileNew()
{
  DocumentWindow *document = new DocumentWindow;
  workspace->addWindowdocument );

  connectdocument, SIGNAL(copyAvailable(bool)), cutAction, SLOT(setEnabled(bool)) );
  connectdocument, SIGNAL(copyAvailable(bool)), copyAction, SLOT(setEnabled(bool)) );
  
  document->show();
}

void MdiWindow::helpAbout()
{
  QMessageBox::aboutthis, tr("About MDI"), tr("A multiple document interface application.") );
}

DocumentWindow *MdiWindow::activeDocument()
{
  return qobject_cast<DocumentWindow*>(workspace->activeWindow());
}

void MdiWindow::enableActions()
{
  bool hasDocuments = (activeDocument() != );
  
  closeAction->setEnabledhasDocuments );  
  pasteAction->setEnabledhasDocuments );  
  tileAction->setEnabledhasDocuments );
  cascadeAction->setEnabledhasDocuments );
  nextAction->setEnabledhasDocuments );
  previousAction->setEnabledhasDocuments );
  separatorAction->setVisiblehasDocuments );

  bool hasSelection = hasDocuments && activeDocument()->textCursor().hasSelection();

  cutAction->setEnabledhasSelection );  
  copyAction->setEnabledhasSelection );  
}

void MdiWindow::createActions()
{
  newAction = new QActionQIcon(":/images/new.png"), tr("&New")this );
  newAction->setShortcuttr("Ctrl+N") );
  newAction->setStatusTiptr("Create a new document") );
  connectnewAction, SIGNAL(triggered()), this, SLOT(fileNew()) );
  
  closeAction = new QActiontr("&Close")this );
  closeAction->setShortcuttr("Ctrl+W") );
  closeAction->setStatusTiptr("Close this document") );
  connectcloseAction, SIGNAL(triggered()), workspace, SLOT(closeActiveWindow()) );

  exitAction = new QActiontr("E&xit")this );
  exitAction->setShortcuttr("Ctrl+Q") );
  exitAction->setStatusTiptr("Quit the application") );
  connectexitAction, SIGNAL(triggered()), qApp, SLOT(closeAllWindows()) );
  

  cutAction = new QActionQIcon(":/images/cut.png"), tr("Cu&t")this );
  cutAction->setShortcuttr("Ctrl+X") );
  cutAction->setStatusTiptr("Cut") );
  cutAction->setEnabled(false);
  connectcutAction, SIGNAL(triggered()), this, SLOT(editCut()) );
  
  copyAction = new QActionQIcon(":/images/copy.png"), tr("&Copy")this );
  copyAction->setShortcuttr("Ctrl+C") );
  copyAction->setStatusTiptr("Copy") );
  copyAction->setEnabled(false);
  connectcopyAction, SIGNAL(triggered()), this, SLOT(editCopy()) );

  pasteAction = new QActionQIcon(":/images/paste.png"), tr("&Paste")this );
  pasteAction->setShortcuttr("Ctrl+V") );
  pasteAction->setStatusTiptr("Paste") );
  connectpasteAction, SIGNAL(triggered()), this, SLOT(editPaste()) );
  

  tileAction = new QActiontr("&Tile")this );
  tileAction->setStatusTiptr("Tile the windows") );
  connecttileAction, SIGNAL(triggered()), workspace, SLOT(tile()) );
  
  cascadeAction = new QActiontr("&Cascade")this );
  cascadeAction->setStatusTiptr("Cascade the windows") );
  connectcascadeAction, SIGNAL(triggered()), workspace, SLOT(cascade()) );

  nextAction = new QActiontr("&Next window")this );
  nextAction->setStatusTiptr("Move to the next window") );
  connectnextAction, SIGNAL(triggered()), workspace, SLOT(activateNextWindow()) );
  
  previousAction = new QActiontr("&Previous window")this );
  previousAction->setStatusTiptr("Move to the previous window") );
  connectpreviousAction, SIGNAL(triggered()), workspace, SLOT(activatePreviousWindow()) );
  
  separatorAction = new QActionthis );
  separatorAction->setSeparatortrue );
  

  aboutAction = new QActiontr("&About")this );
  aboutAction->setStatusTiptr("About this application") );
  connectaboutAction, SIGNAL(triggered()), this, SLOT(helpAbout()) );

  aboutQtAction = new QActiontr("About &Qt")this );
  aboutQtAction->setStatusTiptr("About the Qt toolkit") );
  connectaboutQtAction, SIGNAL(triggered()), qApp, SLOT(aboutQt()) );
}

void MdiWindow::createMenus()
{
  QMenu *menu;
  
  menu = menuBar()->addMenutr("&File") );
  menu->addActionnewAction );
  menu->addActioncloseAction );
  menu->addSeparator();
  menu->addActionexitAction );
  
  menu = menuBar()->addMenutr("&Edit") );
  menu->addActioncutAction );
  menu->addActioncopyAction );
  menu->addActionpasteAction );
  
  windowMenu = menuBar()->addMenutr("&Window") );
  connectwindowMenu, SIGNAL(aboutToShow()), this, SLOT(updateWindowList()) );
  
  menu = menuBar()->addMenutr("&Help") );
  menu->addActionaboutAction );
  menu->addActionaboutQtAction );
}

void MdiWindow::createToolbars()
{
  QToolBar *toolbar;
  
  toolbar = addToolBartr("File") );
  toolbar->addActionnewAction );
  
  toolbar = addToolBartr("Edit") );
  toolbar->addActioncutAction );
  toolbar->addActioncopyAction );
  toolbar->addActionpasteAction );
}

void MdiWindow::editCut()
{
  activeDocument()->cut();
}
  
void MdiWindow::editCopy()
{
  activeDocument()->copy();
}
  
void MdiWindow::editPaste()
{
  activeDocument()->paste();
}

void MdiWindow::updateWindowList()
{
  windowMenu->clear();
  
  windowMenu->addActiontileAction );
  windowMenu->addActioncascadeAction );
  windowMenu->addSeparator();
  windowMenu->addActionnextAction );
  windowMenu->addActionpreviousAction );
  windowMenu->addActionseparatorAction );
  
  int i=1;
  foreachQWidget *w, workspace->windowList() )
  {
    QString text;
    ifi<10 )
      text = tr("&%1 %2").argi++ ).argw->windowTitle() );
    else
      text = w->windowTitle();
      
    QAction *action = windowMenu->addActiontext );
    action->setCheckabletrue );
    action->setCheckedw == activeDocument() );
    connectaction, SIGNAL(triggered()), mapper, SLOT(map()) );
    mapper->setMappingaction, w );
  }
}



Foundations of Qt Development\Chapter04\mdi\mdiwindow.h
/*
 * Copyright (c) 2006-2007, Johan Thelin
 
 * All rights reserved.
 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 
 *     * Redistributions of source code must retain the above copyright notice, 
 *       this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright notice,  
 *       this list of conditions and the following disclaimer in the documentation 
 *       and/or other materials provided with the distribution.
 *     * Neither the name of APress nor the names of its contributors 
 *       may be used to endorse or promote products derived from this software 
 *       without specific prior written permission.
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

#ifndef MDIWINDOW_H
#define MDIWINDOW_H

#include <QMainWindow>

class QAction;
class QWorkspace;
class QSignalMapper;
class QMenu;

class DocumentWindow;

class MdiWindow : public QMainWindow
{
  Q_OBJECT
  
public:
  MdiWindowQWidget *parent = );
  
protected:
  void closeEventQCloseEvent *event );
  
private slots:
  void fileNew();
  
  void editCut();
  void editCopy();
  void editPaste();
  
  void helpAbout();
  
  void enableActions();
  void updateWindowList();

private:
  void createActions();
  void createMenus();
  void createToolbars();

  DocumentWindow *activeDocument();

  QWorkspace *workspace;
  QSignalMapper *mapper;
  
  QAction *newAction;
  QAction *closeAction;
  QAction *exitAction;
  
  QAction *cutAction;
  QAction *copyAction;
  QAction *pasteAction;
  
  QAction *tileAction;
  QAction *cascadeAction;
  QAction *nextAction;
  QAction *previousAction;
  QAction *separatorAction;
  
  QAction *aboutAction;
  QAction *aboutQtAction;
  
  QMenu *windowMenu;
};
  
#endif // MDIWINDOW_H

   
    
  
Related examples in the same category
1.Qt MDI window
2.Qt SDI window
3.Qt based application window
4.Window style flags
5.SdiWindow based text editor
6.Top level window
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.