Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: <davidfancella@us...> - 2007-05-21 01:36:10
|
Revision: 7235 http://armagetronad.svn.sourceforge.net/armagetronad/?rev=7235&view=rev Author: davidfancella Date: 2007-05-20 18:36:05 -0700 (Sun, 20 May 2007) Log Message: ----------- Can't do svn cp without a commit, grrr Modified Paths: -------------- tools/acme/trunk/resources/ui/main.ui Added Paths: ----------- tools/acme/trunk/libacmegui/editors/ tools/acme/trunk/libacmegui/editors/__init__.py tools/acme/trunk/libacmegui/editors/mapEditor.py tools/acme/trunk/libacmegui/editors/mapwidgets/ Added: tools/acme/trunk/libacmegui/editors/__init__.py =================================================================== --- tools/acme/trunk/libacmegui/editors/__init__.py (rev 0) +++ tools/acme/trunk/libacmegui/editors/__init__.py 2007-05-21 01:36:05 UTC (rev 7235) @@ -0,0 +1,25 @@ +#!/usr/bin/env python + +''' + + @version $Id: __init__.py 7231 2007-05-20 22:53:21Z davidfancella $ + + This file is part of acme. + + acme is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + acme is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with acme; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + acme is copyright 2005, 2007 by David Fancella + +''' Added: tools/acme/trunk/libacmegui/editors/mapEditor.py =================================================================== --- tools/acme/trunk/libacmegui/editors/mapEditor.py (rev 0) +++ tools/acme/trunk/libacmegui/editors/mapEditor.py 2007-05-21 01:36:05 UTC (rev 7235) @@ -0,0 +1,25 @@ +#!/usr/bin/env python + +''' + + @version $Id: __init__.py 7231 2007-05-20 22:53:21Z davidfancella $ + + This file is part of acme. + + acme is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + acme is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with acme; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + acme is copyright 2005, 2007 by David Fancella + +''' Modified: tools/acme/trunk/resources/ui/main.ui =================================================================== --- tools/acme/trunk/resources/ui/main.ui 2007-05-21 00:10:58 UTC (rev 7234) +++ tools/acme/trunk/resources/ui/main.ui 2007-05-21 01:36:05 UTC (rev 7235) @@ -12,7 +12,58 @@ <property name="windowTitle" > <string>MainWindow</string> </property> - <widget class="QWidget" name="centralwidget" /> + <widget class="QWidget" name="centralwidget" > + <layout class="QVBoxLayout" > + <property name="margin" > + <number>9</number> + </property> + <property name="spacing" > + <number>6</number> + </property> + <item> + <widget class="QSplitter" name="splitter" > + <property name="orientation" > + <enum>Qt::Horizontal</enum> + </property> + <widget class="QStackedWidget" name="toolView" > + <widget class="QWidget" name="page" /> + <widget class="QWidget" name="page_2" /> + </widget> + <widget class="QToolBox" name="editToolBox" > + <property name="currentIndex" > + <number>0</number> + </property> + <widget class="QWidget" name="page_3" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>333</width> + <height>457</height> + </rect> + </property> + <attribute name="label" > + <string>Page 1</string> + </attribute> + </widget> + <widget class="QWidget" name="page_4" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>96</width> + <height>26</height> + </rect> + </property> + <attribute name="label" > + <string>Page 2</string> + </attribute> + </widget> + </widget> + </widget> + </item> + </layout> + </widget> <widget class="QMenuBar" name="menubar" > <property name="geometry" > <rect> @@ -22,8 +73,50 @@ <height>32</height> </rect> </property> + <widget class="QMenu" name="menuFile" > + <property name="title" > + <string>File</string> + </property> + <addaction name="actionNew" /> + <addaction name="actionOpen" /> + <addaction name="actionSave" /> + <addaction name="actionSave_As" /> + </widget> + <addaction name="menuFile" /> </widget> <widget class="QStatusBar" name="statusbar" /> + <action name="actionNew" > + <property name="icon" > + <iconset>../icons/spawn.png</iconset> + </property> + <property name="text" > + <string>New</string> + </property> + </action> + <action name="actionOpen" > + <property name="icon" > + <iconset>../icons/fileopen.png</iconset> + </property> + <property name="text" > + <string>Open...</string> + </property> + </action> + <action name="actionSave" > + <property name="icon" > + <iconset>../icons/filesave.png</iconset> + </property> + <property name="text" > + <string>Save</string> + </property> + </action> + <action name="actionSave_As" > + <property name="icon" > + <iconset>../icons/filesaveas.png</iconset> + </property> + <property name="text" > + <string>Save As...</string> + </property> + </action> </widget> <resources/> <connections/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |