SF.net SVN: fclient:[664] trunk/fclient/src/fclient/config.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-07-18 02:53:10
|
Revision: 664
http://fclient.svn.sourceforge.net/fclient/?rev=664&view=rev
Author: jUrner
Date: 2008-07-18 02:53:20 +0000 (Fri, 18 Jul 2008)
Log Message:
-----------
config seems to be a good place for ViewObject()
Modified Paths:
--------------
trunk/fclient/src/fclient/config.py
Modified: trunk/fclient/src/fclient/config.py
===================================================================
--- trunk/fclient/src/fclient/config.py 2008-07-17 16:07:27 UTC (rev 663)
+++ trunk/fclient/src/fclient/config.py 2008-07-18 02:53:20 UTC (rev 664)
@@ -127,5 +127,13 @@
pass
+class ViewObject(QtCore.QObject):
+ """base class for view objects"""
+ def __init__(self, parent):
+ QtCore.QObject.__init__(self, parent)
+
+ self.name = '' #unique name of the view
+ self.displayName = '' # name as shown t the user
+ self.icon = None # QIcon associated to the view
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|