Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
460bd0d0
Commit
460bd0d0
authored
23 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Added toolbar with start/stop button and status.
parent
09fe09b5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sbbs3/ctrl/ServicesFormUnit.dfm
+69
-4
69 additions, 4 deletions
src/sbbs3/ctrl/ServicesFormUnit.dfm
src/sbbs3/ctrl/ServicesFormUnit.h
+9
-0
9 additions, 0 deletions
src/sbbs3/ctrl/ServicesFormUnit.h
with
78 additions
and
4 deletions
src/sbbs3/ctrl/ServicesFormUnit.dfm
+
69
−
4
View file @
460bd0d0
object ServicesForm: TServicesForm
Left =
276
Top = 3
18
Left =
458
Top = 3
34
Width = 870
Height = 640
Caption = 'Services'
...
...
@@ -16,12 +16,77 @@ object ServicesForm: TServicesForm
TextHeight = 16
object Log: TMemo
Left = 0
Top =
0
Top =
25
Width = 862
Height =
608
Height =
583
Align = alClient
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
end
object ToolBar: TToolBar
Left = 0
Top = 0
Width = 862
Height = 25
Caption = 'ToolBar'
EdgeBorders = []
Flat = True
Images = MainForm.ImageList
ParentShowHint = False
ShowHint = True
TabOrder = 1
object StartButton: TToolButton
Left = 0
Top = 0
Action = MainForm.ServicesStart
Grouped = True
ParentShowHint = False
ShowHint = True
end
object StopButton: TToolButton
Left = 23
Top = 0
Action = MainForm.ServicesStop
Grouped = True
ParentShowHint = False
ShowHint = True
end
object ToolButton1: TToolButton
Left = 46
Top = 0
Width = 8
Caption = 'ToolButton1'
ImageIndex = 1
Style = tbsSeparator
end
object ConfigureButton: TToolButton
Left = 54
Top = 0
Hint = 'Configure Services'
ImageIndex = 4
ParentShowHint = False
ShowHint = True
end
object ToolButton2: TToolButton
Left = 77
Top = 0
Width = 8
Caption = 'ToolButton2'
ImageIndex = 5
Style = tbsSeparator
end
object Status: TStaticText
Left = 85
Top = 0
Width = 150
Height = 22
Hint = 'Services Status'
Align = alClient
AutoSize = False
BorderStyle = sbsSunken
Caption = 'Status'
TabOrder = 0
end
end
end
This diff is collapsed.
Click to expand it.
src/sbbs3/ctrl/ServicesFormUnit.h
+
9
−
0
View file @
460bd0d0
...
...
@@ -7,11 +7,20 @@
#include
<Controls.hpp>
#include
<StdCtrls.hpp>
#include
<Forms.hpp>
#include
<ComCtrls.hpp>
#include
<ToolWin.hpp>
//---------------------------------------------------------------------------
class
TServicesForm
:
public
TForm
{
__published:
// IDE-managed Components
TMemo
*
Log
;
TToolBar
*
ToolBar
;
TToolButton
*
StartButton
;
TToolButton
*
StopButton
;
TToolButton
*
ToolButton1
;
TToolButton
*
ConfigureButton
;
TToolButton
*
ToolButton2
;
TStaticText
*
Status
;
private:
// User declarations
public:
// User declarations
__fastcall
TServicesForm
(
TComponent
*
Owner
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment