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
|
"""
This template constructs an application with menus, toolbar and statusbar.
It uses KDE classes and methods that simplify the task of building and
operating a GUI. It is recommended that this approach be used, rather
than the primitive approach in menuapp1.py
"""
"""
Copyright 2003 Jim Bublitz
Terms and Conditions
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Except as contained in this notice, the name of the copyright holder shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from the
copyright holder.
"""
False = 0
True = not False
import sys
from qt import QPopupMenu, SIGNAL
from kdecore import KApplication, KCmdLineArgs, KAboutData, i18n
from kdeui import KMainWindow, KMessageBox, KStdAction, KAction
STATUSBAR_LEFT = 1
STATUSBAR_MIDDLE = 2
STATUSBAR_RIGHT = 3
class MainWin (KMainWindow):
def __init__ (self, *args):
apply (KMainWindow.__init__, (self,) + args)
# Create the actions that will populate
# the menus and toolbars
self.initActions ()
# Plug actions into menus
self.initMenus ()
# Plug actions into toolbars
self.initToolBar ()
# Create the status bar
self.initStatusBar ()
# Usings actions, only a single line is required
# to enable/disable both the menu item and corresponding
# toolbar button from anywhere in the program
self.saveAction.setEnabled (False)
self.saveAsAction.setEnabled (False)
def initActions (self):
# Most of the functions selectable by menu are "standard"
# actions (open a file, cut, paste, etc) - you customize
# how they behave in your code, but menu, toolbar, and
# accelerator settings are the same across all programs.
# Standard actions also have tooltips already assigned
# To create most of the actions below, KStdAction is
# is used, since it takes care of everything with
# a single line of code.
# The standard actions only need to specify the slot
# where the code for the action is located
# "File" menu items
self.newAction = KStdAction.openNew (self.slotNew)
self.openAction = KStdAction.open (self.slotOpen)
self.saveAction = KStdAction.save (self.slotSave)
self.saveAsAction = KStdAction.saveAs (self.slotSaveAs)
self.printAction = KStdAction.print_ (self.slotPrint)
self.quitAction = KStdAction.quit (self.slotQuit)
# "Edit" menu items
self.undoAction = KStdAction.undo (self.slotUndo)
self.redoAction = KStdAction.redo (self.slotRedo)
self.cutAction = KStdAction.cut (self.slotCut)
self.copyAction = KStdAction.copy (self.slotCopy)
self.pasteAction = KStdAction.paste (self.slotPaste)
self.findAction = KStdAction.find (self.slotFind)
self.findNextAction = KStdAction.findNext (self.slotFindNext)
self.replaceAction = KStdAction.replace (self.slotReplace)
# For actions that are not "standard", you can create your
# own actions using KAction. This example doesn't include
# an icon, but there is a KAction constructor that will
# allow you to specify an icon (for toolbar use, for instance),
# or you can use KAction.setIcon to set/change the icon. You
# can also add a tooltip with KAction.setToolTip
# This KAction constructor requires a QString, an accelerator (0
# in this case), a slot, and a QObject (None in this case)
self.specialAction = KAction (i18n ("Special"), 0, self.slotSpecial, None)
def initMenus (self):
# plug the actions into the menus
fileMenu = QPopupMenu (self)
self.newAction.plug (fileMenu)
self.openAction.plug (fileMenu)
fileMenu.insertSeparator ()
self.saveAction.plug (fileMenu)
self.saveAsAction.plug (fileMenu)
fileMenu.insertSeparator ()
self.printAction.plug (fileMenu)
fileMenu.insertSeparator ()
self.quitAction.plug (fileMenu)
self.menuBar ().insertItem (i18n ("&File"), fileMenu)
editMenu = QPopupMenu (self)
self.undoAction.plug (editMenu)
self.redoAction.plug (editMenu)
editMenu.insertSeparator ()
self.cutAction.plug (editMenu)
self.copyAction.plug (editMenu)
self.pasteAction.plug (editMenu)
editMenu.insertSeparator ()
self.findAction.plug (editMenu)
self.findNextAction.plug (editMenu)
self.replaceAction.plug (editMenu)
editMenu.insertSeparator ()
self.specialAction.plug (editMenu)
self.menuBar ().insertItem (i18n ("&Edit"), editMenu)
# Uses the info from KAboutData (specified below)
# to construct the "About" box in the Help menu
helpMenu = self.helpMenu ("")
self.menuBar ().insertItem (i18n ("&Help"), helpMenu)
def initToolBar (self):
# Add some (but not all) actions to the toolbar
self.newAction.plug (self.toolBar ())
self.openAction.plug (self.toolBar ())
self.saveAction.plug (self.toolBar ())
self.cutAction.plug (self.toolBar ())
self.copyAction.plug (self.toolBar ())
self.pasteAction.plug (self.toolBar ())
def initStatusBar (self):
# Initialize the status bar
self.statusBar ().insertItem ("", STATUSBAR_LEFT, 1000, True)
self.statusBar ().insertItem ("", STATUSBAR_MIDDLE, 1000, True)
self.statusBar ().insertItem ("", STATUSBAR_RIGHT, 1000, True)
#-------------------- slots -----------------------------------------------
def slotNew (self, id = -1):
self.notImpl ("New")
def slotOpen(self, id = -1):
self.notImpl ("Open")
def slotSave (self, id = -1):
self.notImpl ("Save")
def slotSaveAs (self):
self.notImpl ("Save As")
def slotPrint (self):
self.notImpl ("Print")
def slotQuit (self):
self.notImpl ("Quit")
def slotUndo (self):
self.notImpl ("Undo")
def slotRedo (self):
self.notImpl ("Redo")
def slotCut (self, id = -1):
self.notImpl ("Cut")
def slotCopy (self, id = -1):
self.notImpl ("Copy")
def slotPaste (self, id = -1):
self.notImpl ("Paste")
def slotFind (self):
self.notImpl ("Find")
def slotFindNext (self):
self.notImpl ("Find Next")
def slotReplace (self):
self.notImpl ("Replace")
def slotSpecial (self):
self.notImpl ("Special")
def notImpl (self, item = "Feature"):
self.statusBar ().changeItem ("%s not implemented" % item, STATUSBAR_LEFT)
KMessageBox.error (self, "%s not implemented" % item, "Not Implemented")
self.statusBar ().changeItem ("", STATUSBAR_LEFT)
#-------------------- main ------------------------------------------------
description = "A basic application template"
version = "1.0"
aboutData = KAboutData ("", "",\
version, description, KAboutData.License_GPL,\
"(C) 2003 whoever the author is")
aboutData.addAuthor ("author1", "whatever they did", "email@somedomain")
aboutData.addAuthor ("author2", "they did something else", "another@email.address")
KCmdLineArgs.init (sys.argv, aboutData)
KCmdLineArgs.addCmdLineOptions ([("+files", "File to open")])
app = KApplication ()
mainWindow = MainWin (None, "main window")
mainWindow.show()
app.exec_loop()
|