qasim gui: Cleanup & moved constants in separate file.

git-svn-id: https://websvn.glenux.net/svn/Upoc/sshfs-mapper/trunk@1704 eaee96b3-f302-0410-b096-c6cfd47f7835
This commit is contained in:
glenux 2011-07-20 22:49:07 +00:00
parent 061740d66c
commit 47e8f457a9
3 changed files with 92 additions and 87 deletions

View file

@ -4,12 +4,12 @@ $DEBUG = true
$VERBOSE = true
require 'pp'
require 'sshfs-mapper/config'
require 'sshfs-mapper/map'
require 'qasim/config'
require 'qasim/map'
module SshfsMapper
module Qasim
class SshfsMapper
class QasimCli
#
#
#
@ -69,7 +69,7 @@ module SshfsMapper
end
end
app = SshfsMapper::SshfsMapper.new
app = Qasim::Qasim.new
app.run

View file

@ -18,9 +18,11 @@ end
module Qasim
class QasimGui
NAME="Qasim"
VERSION="0.1"
def initialize
end
def dbus_notify title, body, icon
bus = Qt::DBusConnection.sessionBus
@ -43,12 +45,12 @@ module Qasim
# "Sorry dude", 2, 5000 )
end
def build_app
def self.build_app
app = Qt::Application.new(ARGV)
si = Qt::SystemTrayIcon.new
std_icon = Qt::Icon.new( File.join ICON_PATH, "qasim.svg" )
std_icon = Qt::Icon.new( File.join APP_ICON_PATH, "qasim.svg" )
alt_icon = Qt::Icon.new
blinking = false
@ -115,6 +117,7 @@ module Qasim
end
include Qasim
Qasim::build_app
end
Qasim::QasimGui::build_app

View file

@ -1,3 +1,5 @@
module Qasim
ICON_PATH = "icons"
APP_ICON_PATH = "icons"
APP_NAME="Qasim"
APP_VERSION="0.1"
end