Clean project structure.
This commit is contained in:
parent
78a4fa99ff
commit
947bf937fd
496 changed files with 206 additions and 137 deletions
|
@ -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()
|
||||
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue