Renamed project from libpdraw to libpdw
This commit is contained in:
parent
bb1490b163
commit
877bc9d33a
@ -1,5 +1,5 @@
|
||||
|
||||
# Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
# Libpdw: Primitives Done well!
|
||||
# Copyright (C) 2022 Rebekah Rowe
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
@ -15,9 +15,9 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# libpdraw
|
||||
# libpdw
|
||||
cmake_minimum_required (VERSION 3.20)
|
||||
project (libpdraw VERSION 1.0.0 LANGUAGES CXX)
|
||||
project (libpdw VERSION 1.0.0 LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
@ -133,11 +133,11 @@ endfunction()
|
||||
EmbedResources("${CMAKE_CURRENT_SOURCE_DIR}/res/opensans.ttf" "${CMAKE_CURRENT_SOURCE_DIR}/res/logo.png" "${CMAKE_CURRENT_SOURCE_DIR}/res/flame.png" "${CMAKE_CURRENT_SOURCE_DIR}/res/heart.png" "${CMAKE_CURRENT_SOURCE_DIR}/res/raindrop.png" "${CMAKE_CURRENT_SOURCE_DIR}/res/raindrop2.png" "${CMAKE_CURRENT_SOURCE_DIR}/res/snowflake.png")
|
||||
|
||||
file(GLOB_RECURSE sources "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
|
||||
add_library(libpdraw STATIC ${EMBED_OBJ_RET} ${sources})
|
||||
target_include_directories(libpdraw PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/example-src/lib/" "${CMAKE_CURRENT_SOURCE_DIR}/src/" "${CMAKE_CURRENT_SOURCE_DIR}/include/libpdraw" "${EMBED_HEADER_DIR}")
|
||||
add_library(libpdw STATIC ${EMBED_OBJ_RET} ${sources})
|
||||
target_include_directories(libpdw PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/example-src/lib/" "${CMAKE_CURRENT_SOURCE_DIR}/src/" "${CMAKE_CURRENT_SOURCE_DIR}/include/libpdw" "${EMBED_HEADER_DIR}")
|
||||
|
||||
if (DOXYGEN_FOUND)
|
||||
doxygen_add_docs(libpdraw-docs)
|
||||
doxygen_add_docs(libpdw-docs)
|
||||
endif()
|
||||
|
||||
# Example using xoverlay
|
||||
@ -154,7 +154,7 @@ if(PNG_FOUND AND GLEW_FOUND AND OPENGL_FOUND AND X11_FOUND AND FREETYPE_FOUND)
|
||||
add_executable(example ${sources})
|
||||
|
||||
target_include_directories(example PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/example-src/lib/" "${CMAKE_CURRENT_SOURCE_DIR}/include/")
|
||||
target_link_libraries(example libpdraw
|
||||
target_link_libraries(example libpdw
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/example-src/lib/libxoverlay.a"
|
||||
glez
|
||||
${PNG_LIBRARIES} GL GLU GLEW ${FREETYPE_LIBRARIES} ${X11_X11_LIB} ${X11_Xext_LIB} ${X11_Xfixes_LIB})
|
||||
|
@ -28,27 +28,27 @@
|
||||
// xorg conflict
|
||||
#undef RootWindow
|
||||
|
||||
#include "libpdraw/gui/widgets/slider.hpp"
|
||||
#include "libpdraw/gui/widgets/titlebar.hpp"
|
||||
#include "libpdw/gui/widgets/slider.hpp"
|
||||
#include "libpdw/gui/widgets/titlebar.hpp"
|
||||
//#include "gui/csplitcontainer.hpp"
|
||||
#include "libpdraw/gui/canvas.hpp"
|
||||
#include "libpdraw/gui/widgets/basebutton.hpp"
|
||||
#include "libpdraw/gui/widgets/basewindow.hpp"
|
||||
#include "libpdraw/gui/widgets/checkbox.hpp"
|
||||
#include "libpdraw/gui/widgets/dropdown.hpp"
|
||||
#include "libpdraw/gui/widgets/keyinput.hpp"
|
||||
#include "libpdraw/gui/widgets/textinput.hpp"
|
||||
#include "libpdw/gui/canvas.hpp"
|
||||
#include "libpdw/gui/widgets/basebutton.hpp"
|
||||
#include "libpdw/gui/widgets/basewindow.hpp"
|
||||
#include "libpdw/gui/widgets/checkbox.hpp"
|
||||
#include "libpdw/gui/widgets/dropdown.hpp"
|
||||
#include "libpdw/gui/widgets/keyinput.hpp"
|
||||
#include "libpdw/gui/widgets/textinput.hpp"
|
||||
|
||||
#include "libpdraw/gui/listmenu/itemsublist.hpp"
|
||||
#include "libpdraw/gui/listmenu/itemtitle.hpp"
|
||||
#include "libpdraw/gui/listmenu/itemvariable.hpp"
|
||||
#include "libpdraw/gui/listmenu/list.hpp"
|
||||
#include "libpdraw/gui/tabbedmenu/cvarcontainer.hpp"
|
||||
#include "libpdraw/gui/tabbedmenu/menucontainer.hpp"
|
||||
#include "libpdraw/gui/tabbedmenu/menuwindow.hpp"
|
||||
#include "libpdw/gui/listmenu/itemsublist.hpp"
|
||||
#include "libpdw/gui/listmenu/itemtitle.hpp"
|
||||
#include "libpdw/gui/listmenu/itemvariable.hpp"
|
||||
#include "libpdw/gui/listmenu/list.hpp"
|
||||
#include "libpdw/gui/tabbedmenu/cvarcontainer.hpp"
|
||||
#include "libpdw/gui/tabbedmenu/menucontainer.hpp"
|
||||
#include "libpdw/gui/tabbedmenu/menuwindow.hpp"
|
||||
|
||||
#include "libpdraw/gui/ncc/background.hpp"
|
||||
#include "libpdraw/gui/ncc/logo.hpp"
|
||||
#include "libpdw/gui/ncc/background.hpp"
|
||||
#include "libpdw/gui/ncc/logo.hpp"
|
||||
|
||||
#include "input.hpp"
|
||||
|
||||
@ -94,7 +94,7 @@ public:
|
||||
virtual void Update() override {
|
||||
this->CBaseWindow::Update();
|
||||
if (this->button_clicked)
|
||||
this->GetCanvas()->ShowTooltip("This is an example of a very long tooltip! You can click me again to hide me from view. Thanks for using libpdraw ;)");
|
||||
this->GetCanvas()->ShowTooltip("This is an example of a very long tooltip! You can click me again to hide me from view. Thanks for using libpdw ;)");
|
||||
}
|
||||
CTextInput* text_box = nullptr;
|
||||
bool button_clicked = false;
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,8 +1,20 @@
|
||||
|
||||
/*
|
||||
* CMenuContainer.cpp
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* Created on: Feb 3, 2017
|
||||
* Author: nullifiedcat
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <glez/draw.hpp>
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,8 +1,20 @@
|
||||
|
||||
/*
|
||||
* CMenuWindow.cpp
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* Created on: Feb 3, 2017
|
||||
* Author: nullifiedcat
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "gui/tabbedmenu/menuwindow.hpp"
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
/*
|
||||
* Libpdraw: A Versitile GUI for use with a primitive drawing system!
|
||||
* Libpdw: Primitives Done Well!
|
||||
* Copyright (C) 2022 Rebekah Rowe
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
Loading…
x
Reference in New Issue
Block a user