00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 class globalStrings():
00020
00021
00022
00023 res_folder = "res\\images\\"
00024 toolbar_file_start_monitoring = res_folder + "go-next.png"
00025 toolbar_stop_monitoring = res_folder + "process-stop.png"
00026
00027 toolbar_go_home = res_folder + "view-fullscreen.png"
00028 toolbar_view_free_zoom = res_folder + "select-rectangular.png"
00029 toolbar_view_zoom_in = res_folder + "zoom_in.png"
00030 toolbar_view_zoom_out = res_folder + "zoom_out.png"
00031 toolbar_view_pan = res_folder + "move.png"
00032 toolbar_identify_self = res_folder + "go-home.png"
00033
00034 toolbar_configure_network = res_folder + "system-software-update.png"
00035 toolbar_display_settings = res_folder + "video-display.png"
00036 toolbar_options = res_folder + "preferences-system.png"
00037 toolbar_capture_screenshot = res_folder + "image-x-generic.png"
00038
00039 toolbar_about = res_folder + "help-browser.png"
00040
00041 redraw_map_message = res_folder + "redrawing.png"
00042
00043
00044
00045
00046
00047 sort_up = res_folder + "sm_up.bmp"
00048 sort_down = res_folder + "sm_down.bmp"
00049
00050
00051
00052
00053
00054 splash_eyespy_startup = res_folder + "eyespy_splash.jpg"
00055
00056
00057
00058
00059
00060 animated_img_in_progress = res_folder + "big-roller.gif"
00061
00062
00063
00064
00065
00066
00067 eyespy_icon = res_folder + "ico\\eyespy_small.ico"
00068
00069
00070
00071
00072
00073 DISP_SETT_WORLDWIDE = "WorldWide"
00074 DISP_SETT_CONTINENT = "Continent"
00075 DISP_SETT_COUNTRY_STATE = "Country/State"
00076 DISP_SETT_CITY = "City"
00077
00078 ABOUT_STRING = "EyeSpy V1.0\nThis software is licensed under the Gnu Public License 3.0\n"
00079
00080
00081
00082
00083
00084 displaySettingsPath = "config\\displaySettings.ini"
00085 appOptionsPath = "config\\Options.ini"
00086 licenseOptionsPath = "config\\license.ini"
00087
00088 traceStoragePath = "res\\storage\\capture.dat"
00089 traceStorageTemplate = "res\\storage\\capture.tpl"
00090
00091
00092
00093
00094
00095 VERSION = "Free"
00096 MAJOR_VERSION = 1
00097
00098
00099
00100
00101
00102 def geoIPDBLocation(): return "res\\geoIP"
00103 geoIPDBLocation = staticmethod(geoIPDBLocation)
00104
00105 geoIPInfoFileName = "ipinfo.dat"
00106 geoIPLocFileName = "GeoIPCity.dat"
00107 geoIPIspFileName = "GeoIPISP.dat"
00108 geoIPOrgFileName = "GeoIPOrg.dat"
00109
00110
00111 geoIPResPath = "objects\\logic\\entity\\res\\";
00112 geoIPPath = "objects\\logic\\entity\\res\\geoIP\\";
00113
00114 def geoIPInfoPath(): return globalStrings.geoIPPath + globalStrings.geoIPInfoFileName
00115 def geoIPLocPath(): return globalStrings.geoIPPath + globalStrings.geoIPLocFileName
00116 def geoIPIspPath(): return globalStrings.geoIPPath + globalStrings.geoIPIspFileName
00117 def geoIPOrgPath(): return globalStrings.geoIPPath + globalStrings.geoIPOrgFileName
00118
00119 def tempIPInfoPath(): return globalStrings.geoIPPath + "tmpinfo.dat"
00120 def tempIPLocPath(): return globalStrings.geoIPPath + "iplocdata.dat"
00121 def tempIPIspInfoPath(): return globalStrings.geoIPPath + "ipispdata.dat"
00122 def tempIPOrgInfoPath(): return globalStrings.geoIPPath + "iporgdata.dat"
00123
00124 geoIPInfoPath = staticmethod(geoIPInfoPath)
00125 geoIPLocPath = staticmethod(geoIPLocPath)
00126 geoIPIspPath = staticmethod(geoIPIspPath)
00127 geoIPOrgPath = staticmethod(geoIPOrgPath)
00128
00129 tempIPInfoPath = staticmethod(tempIPInfoPath)
00130 tempIPLocPath = staticmethod(tempIPLocPath)
00131 tempIPIspInfoPath = staticmethod(tempIPIspInfoPath)
00132 tempIPOrgInfoPath = staticmethod(tempIPOrgInfoPath)
00133
00134
00135 defHomePage = "www.revealedsystems.com"
00136 defLicenseSite = "www.gnu.org/licenses/gpl-3.0.html"
00137
00138
00139
00140