Commit Graph

50 Commits

Author SHA1 Message Date
Charlie Fenton 291fb3b74b MGR: Corrections to previous commit 56252e1 2013-11-05 01:37:57 -08:00
Charlie Fenton 56252e11a2 MGR: Immediately update preferences/registry on more changes:
- When Event Log is opened
  - When column widths are changed
2013-11-04 18:11:36 -08:00
David Anderson 3453ed7814 - manager: fix some compile warnings on Unix 2013-03-05 15:12:52 +01:00
Charlie Fenton 0607e1822a MGR: Make GetCurrentViewPage() indepenedent of tab positons; Always set Periodic RPC timer to 1 second if showing event log; Minor code cleanup from Rom
svn path=/trunk/boinc/; revision=20005
2009-12-22 01:22:11 +00:00
Charlie Fenton 98b30841a8 Fixes to Rom's refactoring of Manager code
svn path=/trunk/boinc/; revision=16359
2008-10-30 01:55:11 +00:00
Rom Walton 1f1cc48a4c - client: include precompiled header in rr_sim.cpp so memory
leak detection will work.
    - MGR: Have the BaseFrame call a function to determine if the
        selection list should be saved instead of traversing
        the application pointer.  Each view just overrides the function
        returning a true/false value.  We don't have to worry about null
        pointers and the like.
    - MGR: BOINCGUIApp should never need to know how either the views
        work or the document.  Move the code that determines which
        RPCs should be fired into each of the views.  Have the document
        look for it there.
    - MGR: Reduce duplicate code for hiding and showing an application
    - MGR: Move some Windows and Mac specific code into functions
        and streamline the application startup and shutdown rountines.
    - MGR: Move the event processing that was in BOINCGUIApp into the
        BaseFrame.
    - MGR: General cleanup.
    - MGR: Doxygen comments.
    - MGR: Cleanup some warnings.

    client/
        rr_sim.cpp
    clientgui/
        AdvancedFrame.cpp, .h
        AsyncRPC.cpp, .h
        BOINCBaseFrame.cpp, .h
        BOINCBaseView.cpp, .h
        BOINCClientManager.cpp
        BOINCGUIApp.cpp, .h
        BOINCTaskBar.cpp
        MainDocument.cpp, .h
        sg_BoincSimpleGUI.cpp, .h
        ViewProjects.cpp, .h
        ViewTransfers.cpp, .h
        ViewWork.cpp, .h
        WelcomePage.cpp
    win_build/installerv2/
        BOINC.ism
        BOINCx64.ism
    win_build/
        sim.vcproj

svn path=/trunk/boinc/; revision=16357
2008-10-29 22:44:55 +00:00
Charlie Fenton 6143284ad9 MGR: update all resource share percentages when they change.
svn path=/trunk/boinc/; revision=16226
2008-10-17 06:54:05 +00:00
Charlie Fenton 39f17fc77c MGR: Multiple fixes to Async GUI RPCs: Filter events during Please Wait dialog, hide Please Wait dialog when BOINC hidden, use try / catch blocks for all cached list data.
svn path=/trunk/boinc/; revision=16197
2008-10-14 12:35:48 +00:00
Charlie Fenton 8691a1b8e4 MGR: Erase selection highlight color, gray stripes under progress bars; Async GUI RPCs: remove spurious assert
svn path=/trunk/boinc/; revision=16137
2008-10-06 11:33:28 +00:00
Charlie Fenton c8cbeaf5f7 MGR: Make formatting of List Views more efficient; fix progress bars in transfers tab
svn path=/trunk/boinc/; revision=15976
2008-09-08 09:11:56 +00:00
Charlie Fenton 104a4be78d MGR: Save and restore selected items by key values when refreshing.
svn path=/trunk/boinc/; revision=15959
2008-09-04 13:00:24 +00:00
David Anderson 4f66bb4c95 - added copyright and license info to .C, .cpp, .h files
- scheduler: fix bug in adaptive replication:
    if send an unreplicated job to untrusted host,
    set both wu.target_nresults and wu.min_quorum to app.target_nresults.

svn path=/trunk/boinc/; revision=15762
2008-08-06 18:36:30 +00:00
Charlie Fenton 2950cc0ece MGR: New tasks and projects properties displays from Frank Weiler
svn path=/trunk/boinc/; revision=15537
2008-07-02 10:03:01 +00:00
Charlie Fenton ad724c3f50 MGR List View: fix deselect detection, add all features to Transfers tab, fix bugs, clean up code
svn path=/workspaces/wxListCtrl/; revision=15504
2008-06-27 10:05:47 +00:00
Charlie Fenton b3a123e841 MGR List View: multiple selections for Tasks tab, all features in Projects tab, save/restore sort settings
svn path=/workspaces/wxListCtrl/; revision=15479
2008-06-26 11:49:43 +00:00
Charlie Fenton 4d13e411e8 MGR: Add contrasting background on alternate rows and progress bars to List Views
svn path=/workspaces/wxListCtrl/; revision=15458
2008-06-24 10:52:12 +00:00
Frank Weiler b12a67e317 first proto implement of item property pages, not finished yet
svn path=/workspaces/fweiler/boinc/; revision=15338
2008-05-30 14:34:54 +00:00
Frank Thomas 3bfc78b511 Updated the postal address of the Free Software Foundation in all license headers. See http://lists.ssl.berkeley.edu/pipermail/boinc_dev/2007-October/008939.html for reference.
svn path=/trunk/boinc/; revision=13804
2007-10-09 11:35:47 +00:00
Rom Walton 5229fc3112 - fixes #207 - HTML entities in BOINC Manager have to be decoded
BOINC Manager can now properly decode HTML entites for the
        following elements:
        
            Projects Tab:
                Project Name
                User Name
                Team Name
            Work Tab:
                Project Name
                Application Name
            Transfers Tab:
                Project Name
            Messages Tab:
                Project Name
            Disk Tab:
                Project Name
    - fixes #212 - Info in columns misaligned on switching views
    - Properly restore which tab view the user left from when going
        to the advanced view from the simple view
    - Fix the problem that caused the manager to wait for 7 seconds
        to display anything on initial startup.
    - Store the various Grid/List persisted data seperately so that
        the different header sizes don't cause problems.
    
    clientgui/
        AdvancedFrame.cpp
        BOINCBaseView.cpp, .h
        BOINCGridCtrl.cpp
        ViewMessages.cpp, .h
        ViewMessagesGrid.cpp, .h
        ViewProjects.cpp, .h
        ViewProjectsGrid.cpp, .h
        ViewResources.cpp, .h
        ViewStatistics.cpp, .h
        ViewTransfers.cpp, .h
        ViewTransfersGrid.cpp, .h
        ViewWork.cpp, .h
        ViewWorkGrid.cpp, .h
    lib/
        gui_rpc_client_ops.C

svn path=/trunk/boinc/; revision=12761
2007-05-29 05:07:35 +00:00
Rom Walton bf7985ca68 *** empty log message ***
svn path=/trunk/boinc/; revision=8486
2005-10-05 19:01:28 +00:00
Rom Walton f4c5c8b273 *** empty log message ***
svn path=/trunk/boinc/; revision=7800
2005-09-06 08:58:56 +00:00
Rom Walton c5ca947417 *** empty log message ***
svn path=/trunk/boinc/; revision=7746
2005-09-02 21:03:36 +00:00
Rom Walton 7218803cc2 *** empty log message ***
svn path=/trunk/boinc/; revision=6428
2005-06-24 10:49:42 +00:00
Rom Walton 17ddc0c998 *** empty log message ***
svn path=/trunk/boinc/; revision=6332
2005-06-13 08:47:51 +00:00
David Anderson b8e12020e9 *** empty log message ***
svn path=/trunk/boinc/; revision=5942
2005-04-27 06:55:28 +00:00
Rom Walton 9a9711fda4 *** empty log message ***
svn path=/trunk/boinc/; revision=5922
2005-04-22 06:37:14 +00:00
Rom Walton f748b7fb0b *** empty log message ***
svn path=/trunk/boinc/; revision=5919
2005-04-22 01:46:32 +00:00
David Anderson fcc0732098 *** empty log message ***
svn path=/trunk/boinc/; revision=5917
2005-04-21 23:53:39 +00:00
Rom Walton 9796c6d9e8 *** empty log message ***
svn path=/trunk/boinc/; revision=5916
2005-04-21 23:14:10 +00:00
Rom Walton 12e8c76511 *** empty log message ***
svn path=/trunk/boinc/; revision=5909
2005-04-20 22:22:41 +00:00
David Anderson aeea30f193 *** empty log message ***
svn path=/trunk/boinc/; revision=5865
2005-04-15 19:33:47 +00:00
Rom Walton 4949c610e3 *** empty log message ***
svn path=/trunk/boinc/; revision=5801
2005-04-08 06:24:58 +00:00
Rom Walton e6f77d0e03 *** empty log message ***
svn path=/trunk/boinc/; revision=5669
2005-03-15 23:44:48 +00:00
David Anderson 8d0ab453b3 *** empty log message ***
svn path=/trunk/boinc/; revision=5443
2005-02-16 23:17:43 +00:00
Rom Walton d5b2784ad3 *** empty log message ***
svn path=/trunk/boinc/; revision=5240
2005-01-29 00:58:43 +00:00
David Anderson 435f8edd47 *** empty log message ***
svn path=/trunk/boinc/; revision=5161
2005-01-20 23:22:22 +00:00
Rom Walton 6f1e8ad150 *** empty log message ***
svn path=/trunk/boinc/; revision=4922
2004-12-23 01:06:41 +00:00
Rom Walton d93292b797 *** empty log message ***
svn path=/trunk/boinc/; revision=4697
2004-12-02 07:43:47 +00:00
Rom Walton 6b2f236aa0 *** empty log message ***
svn path=/trunk/boinc/; revision=4428
2004-10-26 08:41:02 +00:00
Rom Walton 29b9da56b2 *** empty log message ***
svn path=/trunk/boinc/; revision=4427
2004-10-26 01:59:44 +00:00
Rom Walton ac980f2105 *** empty log message ***
svn path=/trunk/boinc/; revision=4310
2004-10-09 03:05:01 +00:00
Rom Walton 596e9b768c *** empty log message ***
svn path=/trunk/boinc/; revision=4294
2004-10-05 03:40:28 +00:00
Rom Walton 49c20fc6e8 *** empty log message ***
svn path=/trunk/boinc/; revision=4293
2004-10-05 02:55:26 +00:00
Rom Walton 79ae3bc47d *** empty log message ***
svn path=/trunk/boinc/; revision=4258
2004-09-28 01:19:46 +00:00
Rom Walton cb8ce585bc *** empty log message ***
svn path=/trunk/boinc/; revision=4246
2004-09-25 21:33:24 +00:00
Rom Walton 11b50acd8a *** empty log message ***
svn path=/trunk/boinc/; revision=4241
2004-09-24 22:19:02 +00:00
Rom Walton 5f837c5a6c *** empty log message ***
svn path=/trunk/boinc/; revision=4235
2004-09-24 02:01:53 +00:00
Rom Walton 4aafd2dd84 *** empty log message ***
svn path=/trunk/boinc/; revision=4229
2004-09-23 08:28:50 +00:00
Rom Walton 4f180feafb *** empty log message ***
svn path=/trunk/boinc/; revision=4222
2004-09-22 21:53:07 +00:00
Rom Walton 492536cafe *** empty log message ***
svn path=/trunk/boinc/; revision=4212
2004-09-21 01:30:29 +00:00