Recorder (Builder builder, IntPtr handle)
void SetupHandlers ()
It sets up the event handlers for the delete event and the clear button.
Definition at line 14 of file Recorder.cs .
◆ Recorder()
BioGTK.Recorder.Recorder
(
Builder builder ,
IntPtr handle )
protected
Definition at line 51 of file Recorder.cs .
51 : base(handle)
52 {
53 _builder = builder;
54 builder.Autoconnect(this );
56 App.ApplyStyles(this );
57 }
void SetupHandlers()
It sets up the event handlers for the delete event and the clear button.
◆ Create()
static Recorder BioGTK.Recorder.Create
(
)
static
Create a new instance of the Recorder class
Returns A new instance of the Recorder class.
Definition at line 44 of file Recorder.cs .
45 {
46 Builder builder = new Builder(new FileStream(System.IO.Path.GetDirectoryName(Environment.ProcessPath) + "/" + "Glade/Recorder.glade" , FileMode.Open));
47 return new Recorder(builder, builder.GetObject("recorderWindow" ).Handle);
48 }
◆ SetupHandlers()
void BioGTK.Recorder.SetupHandlers
(
)
protected
It sets up the event handlers for the delete event and the clear button.
Definition at line 65 of file Recorder.cs .
66 {
67 clearBut.Clicked += ClearBut_Clicked;
68 copyBut.Clicked += CopyBut_Clicked;
69 internalBox.Activated += InternalBox_Activated;
70 this.FocusInEvent += Recorder_FocusActivated;
71 }
◆ Internal
bool BioGTK.Recorder.Internal
get
Definition at line 28 of file Recorder.cs .
29 {
30 get
31 {
32 return internalBox.Active;
33 }
34 }
The documentation for this class was generated from the following file: