Exemple #1
0
def main():
	parser = OptionParser(usage="usage: %prog [options] <filename>.stl")
	parser.add_option("-i", "--ini", action="store", type="string", dest="profileini", help="Load settings from a profile ini file")
	parser.add_option("-P", "--project", action="store_true", dest="openprojectplanner", help="Open the project planner")
	parser.add_option("-F", "--flat", action="store_true", dest="openflatslicer", help="Open the 2D SVG slicer (unfinished)")
	parser.add_option("-r", "--print", action="store", type="string", dest="printfile", help="Open the printing interface, instead of the normal cura interface.")
	parser.add_option("-p", "--profile", action="store", type="string", dest="profile", help="Internal option, do not use!")
	parser.add_option("-s", "--slice", action="store_true", dest="slice", help="Slice the given files instead of opening them in Cura")
	(options, args) = parser.parse_args()
	if options.profile != None:
		profile.loadGlobalProfileFromString(options.profile)
	if options.profileini != None:
		profile.loadGlobalProfile(options.profileini)
	if options.openprojectplanner != None:
		from gui import projectPlanner
		projectPlanner.main()
		return
	if options.openflatslicer != None:
		from gui import flatSlicerWindow
		flatSlicerWindow.main()
		return
	if options.printfile != None:
		from gui import printWindow
		printWindow.startPrintInterface(options.printfile)
		return

	if options.slice != None:
		from util import sliceRun
		sliceRun.runSlice(args)
	else:
		#if len(args) > 0:
			#profile.putPreference('lastFile', ';'.join(args))
		from gui import mainWindow
		mainWindow.main()
Exemple #2
0
    def checkLogin(self, username, password):
        db_path = os.path.join('database', 'login.db')
        with sqlite3.connect(db_path) as con:
            query = 'SELECT h,type FROM login WHERE username=?'
            cursor = con.execute(query, (username, ))
            try:
                h, typeOfUser = list(cursor)[0]
            except IndexError:
                return 'No such username.'

        verify = bcrypt.verify(password, h)
        param = {'username': username, 'type': typeOfUser}

        if verify:
            mainWindow.main(param)
            self.close()
            return 'Login successful.'
        else:
            return 'Wrong password, please try again.'
Exemple #3
0
def mainWindowRunCallback(splash):
	from gui import mainWindow
	mainWindow.main(splash)
Exemple #4
0
def mainWindowRunCallback():
	from gui import mainWindow
	mainWindow.main()
Exemple #5
0
def mainWindowRunCallback():
    from gui import mainWindow
    mainWindow.main()