Commit graph

260 commits

Author SHA1 Message Date
Lars Brubaker
e5c187c687 Show com port wizard on desktop when can't connect
Don't show com port wizard when setting up a printer
Moved onload code (first draw) to ApplicationController
getting android to have the same wizard logic as desktop
Refactored setup wizard
2016-07-21 13:49:22 -07:00
Lars Brubaker
1b7f64922c Updating the help menu 2016-07-15 12:43:46 -07:00
Matt Moening
f8e00ca879 Made sure profiles use proper profile extension and are looked for accordingly
Fixed bug where we would show upload profile dialog without any profiles to upload
2016-07-14 13:46:33 -07:00
Matt Moening
26269a64d5 Created task to call sync printer profiles on Cloud services that when finished will launch create printer window if none are synced 2016-07-14 12:48:34 -07:00
Lars Brubaker
32de0942ca Merge branch 'master' of https://github.com/MatterHackers/MatterControl
Conflicts:
	DataStorage/Classic/ClassicSqlitePrinterProfiles.cs
2016-07-14 11:39:19 -07:00
Lars Brubaker
d681a01cf6 Merge 2016-07-14 11:19:13 -07:00
John Lewin
e726e9f5a6 Add UserChanged function to ApplicationController to validate profiles
- Fires on every load, fires anytime auth changes
 - Ensures we perform a db import anytime the guest profile is created
 - Shows the CopyGuestProfiles wizard any time a profile is loaded that
   hasn't previously run the import
 - Issue #1059, #1060
2016-07-13 17:22:02 -07:00
John Lewin
edc3aaab44 Rename ReloadAdvanceControlPanelTrigger to better convey intent 2016-07-13 17:22:02 -07:00
John Lewin
87a4eb21f9 Remove unnecessary wrapper method 2016-07-13 17:22:02 -07:00
Greg
9b9d9b44a0 Added retrieve printer profile history and revert to previous profile functionality 2016-07-13 13:39:11 -07:00
Greg
c7ffedc9d0 Retrieve profile history, revert profile history wizard page 2016-07-13 11:16:55 -07:00
John Lewin
ff95a72893 Set ActiveUserName on ChangeCloudSyncStatus, after login/logout 2016-07-11 15:30:30 -07:00
John Lewin
a8598abafe Rename StartLoginEventHandler to LoginAction
- Rename StartLogoutEventHandler to LogoutAction
2016-07-11 15:30:30 -07:00
Lars Brubaker
80c3a4708c Make sure profilePath exists before loading it.
Cleaning up Action names
Change to development build for user profiles
2016-07-07 17:05:50 -07:00
Lars Brubaker
90aa9f44cf Working on local user profile cache
Saving a new user.json for signed in users
2016-07-06 17:45:53 -07:00
Lars Brubaker
6c08b9421d Don't allow change printer while printing.
Don't allow login or logout while printing.
2016-07-06 16:40:23 -07:00
Lars Brubaker
133987c194 Made the SetupAccountView refresh on login and log out
Refactoring Event Handlers
2016-07-06 14:04:23 -07:00
John Lewin
e92c2f0b2b Refactor tab control, remove exceptions when requested pages missing
- Fixes #986
 - Rename TabePageControlledByTab to TabPage
 - Remove excess TabPage setter (SwitchToPage)
2016-06-21 13:44:03 -07:00
John Lewin
255ddb65bf Describe named action lists as menuActions rather than menuItems 2016-06-11 17:21:59 -07:00
Lars Brubaker
6a6fade3e1 Took out the move to print leveling settings
Made touchscreen on desktop update the view correctly on printer change.
2016-06-08 11:46:46 -07:00
John Lewin
e5a63b052e Migrate Theme support to Agg.UI 2016-06-03 17:22:19 -07:00
Lars Brubaker
b54e6a14ad Unified the android and desktop setup wizard classes 2016-06-01 18:17:11 -07:00
Lars Brubaker
6c321583f8 Merge remote-tracking branch 'lars/master' 2016-05-09 16:55:47 -07:00
John Lewin
c01f56ca22 Refactor CompactTabView to better convey use
- Rename CompactTabView to TouchscreenTabView
 - Consolidate Reload functions into LoadAdvancedControls parent method
 - Rename LoadAdvancedControls to ReloadAdvancedControls
2016-05-07 20:49:46 -07:00
larsbrubaker
85771ced2a Merge branch 'master' of https://github.com/MatterHackers/MatterControl
# Conflicts:
#	SlicerConfiguration/SettingsControlSelectors.cs
2016-05-07 20:30:25 -07:00
larsbrubaker
4e7b68e1c0 Made all the icons black rather than white on transparent. 2016-05-07 20:06:43 -07:00
larsbrubaker
371561a6f7 Working to make the icons scale better on high res screens. 2016-05-07 17:18:05 -07:00
Lars Brubaker
b51b38b249 Moved TextWidget.GlobalPointSizeScaleRatio -> GuiWidget.DeviceScale
Significantly improved the layout consistency when enlarging the device scale.
Created a DeviceMargin and DevicePadding on GuiWidget
Deleted dead code
Made many images have default larger disk sizes and scale in memory.
Made the menus have horizontal spacers rather than dashed lines
2016-05-06 17:56:27 -07:00
John Lewin
5db7c79d00 Get updated profiles compiling on Android
- Remove unused properties from ApplicationView
 - Rename CompactApplicationView to TouchscreenView
 - Rename ResponsiveApplicationView to DesktopView
 - Move abstract ToggleTopContainer() specific to TouchscreenView
 - Remove unused HideTopContainer implementations
 - Conditionally compile invocation/assignment of ApplicationMenuRow
 - Migrate single setting from PrinterSettings "PublishBedImage" to SliceSettings
 - Remove PrinterSettings class
 - Import "PublishBedImage" during ImportPrinters
 - Remove code that doubles the size of the splitter bar when collapsed
 - Fix incorrect path to "config.ini"
2016-05-05 12:33:39 -07:00
John Lewin
4496720772 Json Profiles 2016-04-27 14:35:57 -07:00
John Lewin
7a98b347c3 Consistent use of HorizontalSpacer for layout 2016-04-25 15:25:00 -07:00
Lars Brubaker
4bb141339e Merge branch '1.5.2'
Conflicts:
	ApplicationView/MenuRow/MenuOptionSettings.cs
	StaticData/Translations/Master.txt
2016-04-14 15:42:42 -07:00
John Lewin
93a17d2b6c Guard LoadHistoryItems with WidgetHasBeenClosed
- Observed exception on shutdown where PrintHistory was reloaded during
   shutdown after the db had been closed. Skip load if Closing/closed
 - Spelling, whitespace, use .Localize()
2016-04-11 13:07:17 -07:00
Greg
1e4c1cda53 Added automated test to ensure that setting values are being passed to MatterSlice with the correct values. Also added a stress test in slice settings. 2016-03-03 16:57:43 -08:00
Lars Brubaker
770f1318ec Merge branch '1.5.1' 2016-02-26 16:52:10 -08:00
Lars Brubaker
a8380a2856 Made jump start have better default queue, correct on connect gcode and start gcode
Don't crash on close enter share code when not logged in
Fixed jump start pla settings.
2016-02-26 14:40:20 -08:00
rytz
e24daf052d Help text changes and adding a User Manual link to the HELP menu 2016-02-24 16:58:28 -08:00
larsbrubaker
60aad769f9 Improved MenuBase to use a MenuItemAction class rather than a TupleList
Made items that are not going to do an action disabled.
Made DropDownMenuWidget AddItem return the created item.
2016-02-13 11:49:09 -08:00
larsbrubaker
5206077dbb Made pop out windows not save close state when switching selection in queue. 2016-01-24 20:06:04 -08:00
Lars Brubaker
f6041d85ad Fixed the pop out windows to save their state correctly with the new OnClosing behavior
Made it possible to check if the MainApplicationView is reloading.
2016-01-15 12:28:52 -08:00
John Lewin
77633139aa Add support for closing MatterControl while printing
- Rename CloseAndRemoveAllChildren
2016-01-12 11:20:39 -08:00
larsbrubaker
9b79422532 Made a new high quality render mode for image buffer graphics 2d.
Turned off the automation test.
Made the thumbnails look better.
2015-12-29 21:52:49 -08:00
Lars Brubaker
695aa2d891 white space 2015-12-22 16:44:54 -08:00
Lars Brubaker
b70da46e69 Finishing up the behavior of clicking on a named list of stuff. 2015-12-11 13:42:46 -08:00
Lars Brubaker
a07a15a7c7 Adding in a new performance test structure. 2015-12-11 11:56:51 -08:00
John Lewin
ff03061495 Add tracker report to Trace 2015-12-11 07:40:07 -08:00
Lars Brubaker
7e4ea18ca6 Put statistic track class into agg. 2015-12-10 15:56:25 -08:00
Lars Brubaker
c26e9b1a28 use the max length stuff. 2015-12-10 11:01:26 -08:00
Lars Brubaker
458ad77cea agg automation runner draws itself. 2015-12-09 15:42:45 -08:00
Lars Brubaker
a0d53b4efe Wrote a statistics tracker test. 2015-12-08 12:02:44 -08:00