Clean project structure.

This commit is contained in:
jmsgrogan 2023-01-17 10:13:25 +00:00
parent 78a4fa99ff
commit 947bf937fd
496 changed files with 206 additions and 137 deletions

View file

@ -61,7 +61,7 @@ target_include_directories(${APP_NAME} PUBLIC
"${CMAKE_CURRENT_SOURCE_DIR}/canvas"
"${CMAKE_CURRENT_SOURCE_DIR}/mesh_viewer"
)
target_link_libraries(${APP_NAME} PUBLIC client windows console core network database geometry audio web)
target_link_libraries(${APP_NAME} PUBLIC ui_controls client windows console core network database geometry audio web)
set_property(TARGET ${APP_NAME} PROPERTY FOLDER apps)
endif()

View file

@ -59,13 +59,13 @@ void NotesTk::initializeViews()
mesh->setName("MeshViewer");
tabbedPanel->addPanel(std::move(mesh), "Mesh Viewer");
auto topBar = TopBar::Create();
//auto topBar = TopBar::Create();
//auto statusBar = StatusBar::Create();
auto horizontal_spacer = HorizontalSpacer::Create();
horizontal_spacer->addWidgetWithScale(std::move(topBar), 1);
horizontal_spacer->addWidgetWithScale(std::move(tabbedPanel), 20);
//auto horizontal_spacer = HorizontalSpacer::Create();
//horizontal_spacer->addWidgetWithScale(std::move(topBar), 1);
//horizontal_spacer->addWidgetWithScale(std::move(tabbedPanel), 20);
//horizontal_spacer->addWidgetWithScale(std::move(statusBar), 1);
mainWindow->setWidget(std::move(horizontal_spacer));
mainWindow->setWidget(std::move(tabbedPanel));
}