~vbursian/research-assistant/intervers

« back to all changes in this revision

Viewing changes to RAdmin/AdminWindow.h

  • Committer: Viktor Bursian
  • Date: 2020-08-24 14:20:20 UTC
  • mfrom: (10.6.1 admin)
  • mto: (10.8.1 stable)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: vik@pryanik-20200824142020-iqw7jxifp714dzym
Launching option '--desk' instead of '--root'; Globals->RAMainDesk; return codes; AutocompleteDesk; CreateNewPartition with docket;...

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#include "RAGUI_global.h"
13
13
#include "ExecutionConsole.h"
14
14
#include "Navigator.h"
15
 
#include "Globals.h"
16
15
#include "DB_SQL_Net.h"
17
16
#include "EditScriptDialog.h"
18
17
#include <QMainWindow>
44
43
  public:
45
44
    virtual                   ~sAdminWindow ();
46
45
    explicit                  sAdminWindow (psNet  net);
47
 
    sPtr<sFolderNode>         Data ()
48
 
                                {return Net->Root()>>GlobalAttr::Data; }
49
 
    sPtr<sFolderNode>         Workstation ()
50
 
                                {return Net->Root()>>WorkstationAttrName; }
51
46
 
52
47
  signals:
53
48
    void                      GotJob (QString);
83
78
    void                      AbsorbAllRelatedPartitions ();
84
79
    void                      InstallSimple ();
85
80
    void                      Autocomplete ();
86
 
    void                      AutocompleteData ();
87
 
    void                      AutocompleteWorkstation ();
88
81
    void                      CreateStyles ();
89
82
//    void                      Upgrade_1_1_to_1_2 ();
90
83
 
95
88
    void                      ExecuteInConsole (const QString &  script
96
89
                                  ,bool   autoclose_on_success = false
97
90
                                  ,bool   autoclose_on_abend = false
98
 
                                  ,int    autoclose_delay_on_success = 5
99
 
                                                             //!< in seconds
100
 
                                  ,int    autoclose_delay_on_abend = 20
101
 
                                                             //!< in seconds
 
91
                                  ,int    autoclose_delay_on_success = 5/*s*/
 
92
                                  ,int    autoclose_delay_on_abend = 20/*s*/
102
93
                                  );
103
94
    void                      DeleteConsole ();
104
95