Skip to content

Commit

Permalink
Modified GUIX Studio to not install a simple example by default. (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
ting-ms authored Dec 13, 2023
1 parent f37db7a commit 19222d3
Show file tree
Hide file tree
Showing 15 changed files with 0 additions and 213 deletions.
File renamed without changes.
2 changes: 0 additions & 2 deletions guix_studio/build/vs_2019/studiox.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@
<ClInclude Include="..\..\image_reader.h" />
<ClInclude Include="..\..\import_project_dlg.h" />
<ClInclude Include="..\..\import_sprite_frames_dlg.h" />
<ClInclude Include="..\..\install_dir_dialog.h" />
<ClInclude Include="..\..\left_panel_frame.h" />
<ClInclude Include="..\..\line_chart_service_provider.h" />
<ClInclude Include="..\..\MacroPlaybackDlg.h" />
Expand Down Expand Up @@ -302,7 +301,6 @@
<ClCompile Include="..\..\image_reader.cpp" />
<ClCompile Include="..\..\import_project_dlg.cpp" />
<ClCompile Include="..\..\import_sprite_frames_dlg.cpp" />
<ClCompile Include="..\..\install_dir_dialog.cpp" />
<ClCompile Include="..\..\jpg_reader.cpp" />
<ClCompile Include="..\..\left_panel_frame.cpp" />
<ClCompile Include="..\..\line_chart_service_provider.cpp" />
Expand Down
6 changes: 0 additions & 6 deletions guix_studio/build/vs_2019/studiox.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -364,9 +364,6 @@
<ClInclude Include="..\..\clone_repo_dialog.h">
<Filter>include</Filter>
</ClInclude>
<ClInclude Include="..\..\install_dir_dialog.h">
<Filter>include</Filter>
</ClInclude>
<ClInclude Include="..\..\system_pngs.h">
<Filter>include</Filter>
</ClInclude>
Expand Down Expand Up @@ -755,9 +752,6 @@
<ClCompile Include="..\..\clone_repo_dialog.cpp">
<Filter>source</Filter>
</ClCompile>
<ClCompile Include="..\..\install_dir_dialog.cpp">
<Filter>source</Filter>
</ClCompile>
<ClCompile Include="..\..\system_pngs.cpp">
<Filter>source</Filter>
</ClCompile>
Expand Down
141 changes: 0 additions & 141 deletions guix_studio/install_dir_dialog.cpp

This file was deleted.

31 changes: 0 additions & 31 deletions guix_studio/install_dir_dialog.h

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions guix_studio/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@
#define IDB_ADD_RESOURCE_HIGHLIGHT 306
#define IDD_RICH_TEXT_EDIT_DLG 307
#define IDD_CLONE_REPO 308
#define IDD_SELECT_INSTALL_DIR 309
#define IDD_GIT_PROGRESS 310
#define IDB_BITMAP3 312
#define IDB_BOLD 315
Expand Down Expand Up @@ -427,7 +426,6 @@
#define IDB_CANCEL_CLONE 1257
#define IDB_CLONE_REPO3 1257
#define IDB_EXIT_CLONE_DIALOG 1257
#define IDC_INSTALL_PATH 1258
#define IDC_ROTATION_ANGLE_LABLE 1260
#define IDC_ROTATION_ANGLE_COMBO 1261
#define IDC_CLONE_OPERATION 1262
Expand Down
23 changes: 0 additions & 23 deletions guix_studio/studiox.rc
Original file line number Diff line number Diff line change
Expand Up @@ -1159,16 +1159,6 @@ BEGIN
PUSHBUTTON "I do not want to download samples at this time.",IDB_EXIT_CLONE_DIALOG,7,86,340,17,BS_CENTER | BS_NOTIFY
END

IDD_SELECT_INSTALL_DIR DIALOGEX 0, 0, 387, 134
STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_SYSMENU
FONT 8, "Microsoft Sans Serif", 400, 0, 0x0
BEGIN
LTEXT "GUIX Studio will install a simple example project to the following location. Click Continue to use the default location or click Browse to select a different location.",IDC_STATIC,32,33,311,27
LTEXT "Installation Directory:",IDC_STATIC,9,60,83,10
PUSHBUTTON "Browse...",IDC_BROWSE,331,72,49,16
LTEXT "C:\\Azure_RTOS\\GUIX-Studio-6.1",IDC_INSTALL_PATH,6,72,322,16,SS_CENTERIMAGE | SS_SUNKEN | SS_ENDELLIPSIS
END

IDD_GIT_PROGRESS DIALOGEX 0, 0, 317, 90
STYLE DS_SETFONT | WS_CHILD | WS_VISIBLE
FONT 9, "Microsoft Sans Serif", 400, 0, 0x0
Expand Down Expand Up @@ -1457,14 +1447,6 @@ BEGIN
BOTTOMMARGIN, 125
END

IDD_SELECT_INSTALL_DIR, DIALOG
BEGIN
LEFTMARGIN, 6
RIGHTMARGIN, 380
TOPMARGIN, 7
BOTTOMMARGIN, 127
END

IDD_GIT_PROGRESS, DIALOG
BEGIN
LEFTMARGIN, 7
Expand Down Expand Up @@ -1607,11 +1589,6 @@ BEGIN
0
END

IDD_SELECT_INSTALL_DIR AFX_DIALOG_LAYOUT
BEGIN
0
END

IDD_GIT_PROGRESS AFX_DIALOG_LAYOUT
BEGIN
0
Expand Down
8 changes: 0 additions & 8 deletions guix_studio/target_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include "target_view.h"
#include "studiox_util.h"
#include "clone_repo_dialog.h"
#include "install_dir_dialog.h"
#include "color_edit_dialog.h"

#ifdef _DEBUG
Expand Down Expand Up @@ -172,13 +171,6 @@ void target_view::InitialDisplay(void)
clone_repo_dialog *dlg = new clone_repo_dialog(parent);
dlg->DoModal();
delete(dlg);

if (StudioXIni.samples_dir.IsEmpty())
{
install_dir_dialog *install_dlg = new install_dir_dialog(parent);
install_dlg->DoModal();
delete install_dlg;
}
}
DisplayRecentProjects();
}
Expand Down
File renamed without changes.

0 comments on commit 19222d3

Please sign in to comment.