-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMainWindow.Debug.vb
More file actions
executable file
·36 lines (29 loc) · 883 Bytes
/
Copy pathMainWindow.Debug.vb
File metadata and controls
executable file
·36 lines (29 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
' MainWindow.Debug.vb - Build system integration for MainWindow
Imports Gtk
Imports Gdk
Imports System
Imports System.IO
Imports System.Threading.Tasks
Imports SimpleIDE.Utilities
Imports SimpleIDE.Models
Imports SimpleIDE.Widgets
Imports SimpleIDE.Dialogs
Partial Public Class MainWindow
Public Sub StopDebugging()
' TODO: Imp lement
End Sub
''' <summary>
''' Stops the running/debugging process (Shift+F5)
''' </summary>
Private Sub OnStopDebugging(vSender As Object, vArgs As EventArgs)
StopProject()
End Sub
' Helper method to update debug button states
Private Sub UpdateDebugButtonStates()
Try
' TODO: Update toolbar button states based on debug state
Catch ex As Exception
Console.WriteLine($"UpdateDebugButtonStates error: {ex.Message}")
End Try
End Sub
End Class