Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Project Set List #1301

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@

# External files
/vendor
/.vs
/CMakeSettings.json
/RCa12416
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ add_subdirectory(nofish)
add_subdirectory(ObjectState)
add_subdirectory(Padre)
add_subdirectory(Projects)
add_subdirectory(ProjectsSetList)
add_subdirectory(Snapshots)
add_subdirectory(SnM)
add_subdirectory(snooks)
Expand Down
7 changes: 7 additions & 0 deletions Menus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,13 @@ void SWSCreateExtensionsMenu(HMENU hMenu)
AddToMenu(hPrjMgmtSubMenu, SWS_SEPARATOR, 0);
AddToMenu(hPrjMgmtSubMenu, __LOCALIZE("(related projects list)", "sws_ext_menu"), NamedCommandLookup("_SWS_OPENRELATED1"));

HMENU hPrjSetListMgmtSubMenu = CreatePopupMenu();
AddSubMenu(hMenu, hPrjSetListMgmtSubMenu, __LOCALIZE("Project Set List", "sws_ext_menu"));
AddToMenu(hPrjSetListMgmtSubMenu, "Project Set List", NamedCommandLookup("_SWS_PROJSETLIST_OPEN"));
AddToMenu(hPrjSetListMgmtSubMenu, SWS_SEPARATOR, 0);
AddToMenu(hPrjSetListMgmtSubMenu, __LOCALIZE("Open set list...", "sws_ext_menu"), NamedCommandLookup("_SWS_PROJSETLISTSOPEN"));
AddToMenu(hPrjSetListMgmtSubMenu, __LOCALIZE("Save set list...", "sws_ext_menu"), NamedCommandLookup("_SWS_PROJSETLISTSAVE"));

HMENU hStartupSubMenu = CreatePopupMenu();
AddSubMenu(hMenu, hStartupSubMenu, __LOCALIZE("Startup actions", "sws_ext_menu"));
AddToMenu(hStartupSubMenu, __LOCALIZE("Set project startup action...", "sws_ext_menu"), NamedCommandLookup("_S&M_SET_PRJ_ACTION"));
Expand Down
5 changes: 5 additions & 0 deletions ProjectsSetList/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
target_sources(sws
PRIVATE
ProjectSetListMgr.cpp
ProjectSetList.cpp
)
Loading