Skip to content

Commit

Permalink
gui: regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
bk138 committed Oct 13, 2024
1 parent 2234516 commit 288ce60
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/gui/DialogSettings.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// -*- C++ -*-
//
// generated by wxGlade 1.0.4 on Mon Oct 7 10:38:42 2024
// generated by wxGlade 1.0.4 on Sun Oct 13 14:35:34 2024
//
// Example for compiling a single file project under Linux using g++:
// g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
Expand Down
2 changes: 1 addition & 1 deletion src/gui/DialogSettings.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// -*- C++ -*-
//
// generated by wxGlade 1.0.4 on Mon Oct 7 10:38:42 2024
// generated by wxGlade 1.0.4 on Sun Oct 13 14:35:34 2024
//
// Example for compiling a single file project under Linux using g++:
// g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
Expand Down
2 changes: 1 addition & 1 deletion src/gui/FrameLog.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// -*- C++ -*-
//
// generated by wxGlade 1.0.4 on Mon Oct 7 10:38:42 2024
// generated by wxGlade 1.0.4 on Sun Oct 13 14:35:34 2024
//
// Example for compiling a single file project under Linux using g++:
// g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
Expand Down
2 changes: 1 addition & 1 deletion src/gui/FrameLog.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// -*- C++ -*-
//
// generated by wxGlade 1.0.4 on Mon Oct 7 10:38:42 2024
// generated by wxGlade 1.0.4 on Sun Oct 13 14:35:34 2024
//
// Example for compiling a single file project under Linux using g++:
// g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
Expand Down
20 changes: 10 additions & 10 deletions src/gui/FrameMain.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// -*- C++ -*-
//
// generated by wxGlade 1.0.4 on Mon Oct 7 10:38:42 2024
// generated by wxGlade 1.0.4 on Sun Oct 13 14:35:34 2024
//
// Example for compiling a single file project under Linux using g++:
// g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
Expand Down Expand Up @@ -114,26 +114,26 @@ FrameMain::FrameMain(wxWindow* parent, wxWindowID id, const wxString& title, con
}
frame_main_toolbar = new wxToolBar(this, -1, wxDefaultPosition, wxDefaultSize, wxTB_HORIZONTAL|wxTB_TEXT|wxTB_NODIVIDER);
SetToolBar(frame_main_toolbar);
frame_main_toolbar->AddTool(wxID_YES, _("Connect"), bitmapBundleFromSVGResource("connect"), wxNullBitmap, wxITEM_NORMAL, _("Connect to a specific host."), wxEmptyString);
frame_main_toolbar->AddTool(wxID_YES, _("Connect"), wxNullBitmap, wxNullBitmap, wxITEM_NORMAL, _("Connect to a specific host."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::machine_connect, this, wxID_YES);
frame_main_toolbar->AddTool(wxID_REDO, _("Listen"), bitmapBundleFromSVGResource("listen"), wxNullBitmap, wxITEM_NORMAL, _("Listen for an incoming connection."), wxEmptyString);
frame_main_toolbar->AddTool(wxID_REDO, _("Listen"), wxNullBitmap, wxNullBitmap, wxITEM_NORMAL, _("Listen for an incoming connection."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::machine_listen, this, wxID_REDO);
frame_main_toolbar->AddSeparator();
frame_main_toolbar->AddTool(wxID_STOP, _("Disconnect"), bitmapBundleFromSVGResource("disconnect"), wxNullBitmap, wxITEM_NORMAL, _("Terminate connection."), wxEmptyString);
frame_main_toolbar->AddTool(wxID_STOP, _("Disconnect"), wxNullBitmap, wxNullBitmap, wxITEM_NORMAL, _("Terminate connection."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::machine_disconnect, this, wxID_STOP);
frame_main_toolbar->AddTool(ID_GRABKEYBOARD, _("Grab Keyboard"), bitmapBundleFromSVGResource("toggle-keyboard-grab"), wxNullBitmap, wxITEM_CHECK, _("Intercept all keyboard input. Allows you to use special keys that would otherwise be interpreted by the local computer."), wxEmptyString);
frame_main_toolbar->AddTool(ID_GRABKEYBOARD, _("Grab Keyboard"), wxNullBitmap, wxNullBitmap, wxITEM_CHECK, _("Intercept all keyboard input. Allows you to use special keys that would otherwise be interpreted by the local computer."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::machine_grabkeyboard, this, ID_GRABKEYBOARD);
frame_main_toolbar->AddTool(wxID_SAVE, _("Take Screenshot"), bitmapBundleFromSVGResource("screenshot"), wxNullBitmap, wxITEM_NORMAL, _("Take a screenshot of the current connection."), wxEmptyString);
frame_main_toolbar->AddTool(wxID_SAVE, _("Take Screenshot"), wxNullBitmap, wxNullBitmap, wxITEM_NORMAL, _("Take a screenshot of the current connection."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::machine_screenshot, this, wxID_SAVE);
frame_main_toolbar->AddSeparator();
frame_main_toolbar->AddTool(ID_INPUT_RECORD, _("Record Input"), bitmapBundleFromSVGResource("record"), wxNullBitmap, wxITEM_NORMAL, _("Record mouse and keyboard input for later replay as a macro."), wxEmptyString);
frame_main_toolbar->AddTool(ID_INPUT_RECORD, _("Record Input"), wxNullBitmap, wxNullBitmap, wxITEM_NORMAL, _("Record mouse and keyboard input for later replay as a macro."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::machine_input_record, this, ID_INPUT_RECORD);
frame_main_toolbar->AddTool(ID_INPUT_REPLAY, _("Replay Input"), bitmapBundleFromSVGResource("replay"), wxNullBitmap, wxITEM_NORMAL, _("Replay a recorded mouse and keyboard input macro. If <Shift> is held down while clicking this button, the macro is replayed in a loop."), wxEmptyString);
frame_main_toolbar->AddTool(ID_INPUT_REPLAY, _("Replay Input"), wxNullBitmap, wxNullBitmap, wxITEM_NORMAL, _("Replay a recorded mouse and keyboard input macro. If <Shift> is held down while clicking this button, the macro is replayed in a loop."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::machine_input_replay, this, ID_INPUT_REPLAY);
frame_main_toolbar->AddSeparator();
frame_main_toolbar->AddTool(ID_FULLSCREEN, _("Fullscreen"), bitmapBundleFromSVGResource("fullscreen"), wxNullBitmap, wxITEM_CHECK, _("Toggle fullscreen view."), wxEmptyString);
frame_main_toolbar->AddTool(ID_FULLSCREEN, _("Fullscreen"), wxNullBitmap, wxNullBitmap, wxITEM_CHECK, _("Toggle fullscreen view."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::view_togglefullscreen, this, ID_FULLSCREEN);
frame_main_toolbar->AddTool(ID_ONE_TO_ONE, _("View 1:1"), bitmapBundleFromSVGResource("one-to-one"), wxNullBitmap, wxITEM_CHECK, _("Toggle 1:1 view, disabling all scaling."), wxEmptyString);
frame_main_toolbar->AddTool(ID_ONE_TO_ONE, _("View 1:1"), wxNullBitmap, wxNullBitmap, wxITEM_CHECK, _("Toggle 1:1 view, disabling all scaling."), wxEmptyString);
Bind(wxEVT_MENU, &FrameMain::view_toggle1to1, this, ID_ONE_TO_ONE);
frame_main_toolbar->Realize();
wxBoxSizer* sizer_top = new wxBoxSizer(wxHORIZONTAL);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/FrameMain.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// -*- C++ -*-
//
// generated by wxGlade 1.0.4 on Mon Oct 7 10:38:42 2024
// generated by wxGlade 1.0.4 on Sun Oct 13 14:35:34 2024
//
// Example for compiling a single file project under Linux using g++:
// g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
Expand Down

0 comments on commit 288ce60

Please sign in to comment.