summaryrefslogtreecommitdiff
path: root/grc/src/gui/Constants.py
diff options
context:
space:
mode:
authorjblum2008-09-28 03:35:21 +0000
committerjblum2008-09-28 03:35:21 +0000
commit0174f42a56c3e95008ffc6a9771f2bb2d155f0f5 (patch)
tree12dc3767a96b89d4e428e44691f01b4ef9e24d99 /grc/src/gui/Constants.py
parentff9c2110d832a0d3b097eab9ca31562f91566404 (diff)
downloadgnuradio-0174f42a56c3e95008ffc6a9771f2bb2d155f0f5.tar.gz
gnuradio-0174f42a56c3e95008ffc6a9771f2bb2d155f0f5.tar.bz2
gnuradio-0174f42a56c3e95008ffc6a9771f2bb2d155f0f5.zip
freedesktop
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9668 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'grc/src/gui/Constants.py')
-rw-r--r--grc/src/gui/Constants.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/grc/src/gui/Constants.py b/grc/src/gui/Constants.py
index 804fff4c9..f5803cc17 100644
--- a/grc/src/gui/Constants.py
+++ b/grc/src/gui/Constants.py
@@ -17,10 +17,19 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
"""
-##The name for new/unsaved flow graphs
+import os
+
+##default path for the open/save dialogs
+DEFAULT_FILE_PATH = os.getcwd()
+
+##file extensions
+FLOW_GRAPH_FILE_EXTENSION = '.grc'
+IMAGE_FILE_EXTENSION = '.png'
+
+##name for new/unsaved flow graphs
NEW_FLOGRAPH_TITLE = 'untitled'
-##Rotation constants
+##rotation constants
DIR_LEFT = 'left'
DIR_RIGHT = 'right'