beginnings of drag and drop #33
7 changed files with 881 additions and 413 deletions
commit
4b3ce4132f
12
Doxyfile
12
Doxyfile
|
|
@ -1,6 +1,9 @@
|
||||||
PROJECT_LOGO = resource / logo / logo64.png PROJECT_NAME = Milsko
|
PROJECT_LOGO = resource/logo/logo64.png
|
||||||
PROJECT_BRIEF = "Lightweight and fast GUI toolkit" OUTPUT_DIRECTORY = doxygen
|
PROJECT_NAME = Milsko
|
||||||
TAB_SIZE = 8 OPTIMIZE_OUTPUT_FOR_C = YES
|
PROJECT_BRIEF = "Lightweight and fast GUI toolkit"
|
||||||
|
OUTPUT_DIRECTORY = doxygen
|
||||||
|
TAB_SIZE = 8
|
||||||
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
||||||
MARKDOWN_SUPPORT = YES
|
MARKDOWN_SUPPORT = YES
|
||||||
FILE_PATTERNS = *.h *.md
|
FILE_PATTERNS = *.h *.md
|
||||||
INPUT = include/Mw
|
INPUT = include/Mw
|
||||||
|
|
@ -19,4 +22,5 @@ PROJECT_LOGO = resource / logo / logo64.png PROJECT_NAME = Milsko
|
||||||
GENERATE_LATEX = NO
|
GENERATE_LATEX = NO
|
||||||
EXTRACT_ALL = YES
|
EXTRACT_ALL = YES
|
||||||
|
|
||||||
HTML_EXTRA_STYLESHEET = resource / doxygen - theme / doxygen - awesome.css HTML_COLORSTYLE = LIGHT
|
HTML_EXTRA_STYLESHEET = resource/doxygen-theme/doxygen-awesome.css
|
||||||
|
HTML_COLORSTYLE = LIGHT
|
||||||
|
|
|
||||||
42
Jenkinsfile
vendored
42
Jenkinsfile
vendored
|
|
@ -1,14 +1,22 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
label "built-in"} stages {
|
label "built-in"
|
||||||
|
}
|
||||||
|
stages {
|
||||||
stage("Build document") {
|
stage("Build document") {
|
||||||
when {
|
when {
|
||||||
branch "master"} agent{
|
branch "master"
|
||||||
label "built-in"} steps{
|
}
|
||||||
|
agent {
|
||||||
|
label "built-in"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
sh("rm -rf include/Mw/LowLevel/Wayland")
|
sh("rm -rf include/Mw/LowLevel/Wayland")
|
||||||
sh("doxygen")
|
sh("doxygen")
|
||||||
sh("rm -rf /var/www/milsko-doxygen")
|
sh("rm -rf /var/www/milsko-doxygen")
|
||||||
sh("mv doxygen/html /var/www/milsko-doxygen")} post {
|
sh("mv doxygen/html /var/www/milsko-doxygen")
|
||||||
|
}
|
||||||
|
post {
|
||||||
always {
|
always {
|
||||||
notifyDiscord()
|
notifyDiscord()
|
||||||
}
|
}
|
||||||
|
|
@ -18,7 +26,9 @@ pipeline {
|
||||||
parallel {
|
parallel {
|
||||||
stage("Build for Linux 64-bit") {
|
stage("Build for Linux 64-bit") {
|
||||||
agent {
|
agent {
|
||||||
label "built-in"} steps {
|
label "built-in"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
sh("git clean -dfx")
|
sh("git clean -dfx")
|
||||||
sh("./configure --enable-opengl --enable-vulkan --without-vulkan-string-helper")
|
sh("./configure --enable-opengl --enable-vulkan --without-vulkan-string-helper")
|
||||||
sh("make -j4")
|
sh("make -j4")
|
||||||
|
|
@ -28,7 +38,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage("Build for Windows 32-bit") {
|
stage("Build for Windows 32-bit") {
|
||||||
agent {
|
agent {
|
||||||
label "built-in"} steps {
|
label "built-in"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
sh("git clean -dfx")
|
sh("git clean -dfx")
|
||||||
sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=i686-w64-mingw32")
|
sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=i686-w64-mingw32")
|
||||||
sh("make -j4")
|
sh("make -j4")
|
||||||
|
|
@ -39,7 +51,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage("Build for Windows 64-bit") {
|
stage("Build for Windows 64-bit") {
|
||||||
agent {
|
agent {
|
||||||
label "built-in"} steps {
|
label "built-in"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
sh("git clean -dfx")
|
sh("git clean -dfx")
|
||||||
sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=x86_64-w64-mingw32")
|
sh("./configure --enable-opengl --enable-stb-truetype --disable-freetype2 --cross --target=Windows --host=x86_64-w64-mingw32")
|
||||||
sh("make -j4")
|
sh("make -j4")
|
||||||
|
|
@ -50,7 +64,9 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage("Build for Windows 32-bit (MSVC)") {
|
stage("Build for Windows 32-bit (MSVC)") {
|
||||||
agent {
|
agent {
|
||||||
label "2012r2"} steps {
|
label "2012r2"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
bat("git clean -dfx")
|
bat("git clean -dfx")
|
||||||
bat("nmake -f NTMakefile")
|
bat("nmake -f NTMakefile")
|
||||||
bat("move /y src\\Mw.dll MwMSVC32.dll")
|
bat("move /y src\\Mw.dll MwMSVC32.dll")
|
||||||
|
|
@ -60,8 +76,14 @@ pipeline {
|
||||||
}
|
}
|
||||||
stage("Build for Windows 32-bit (Watcom)") {
|
stage("Build for Windows 32-bit (Watcom)") {
|
||||||
agent {
|
agent {
|
||||||
label "built-in"} environment{
|
label "built-in"
|
||||||
WATCOM = "/usr/watcom" INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt" PATH = "/usr/watcom/binl64:${env.PATH}"} steps {
|
}
|
||||||
|
environment {
|
||||||
|
WATCOM = "/usr/watcom"
|
||||||
|
INCLUDE = "/usr/watcom/h:/usr/watcom/h/nt"
|
||||||
|
PATH = "/usr/watcom/binl64:${env.PATH}"
|
||||||
|
}
|
||||||
|
steps {
|
||||||
sh("git clean -dfx")
|
sh("git clean -dfx")
|
||||||
sh("wmake -f WatMakefile")
|
sh("wmake -f WatMakefile")
|
||||||
sh("mv src/Mw.dll MwWat32.dll")
|
sh("mv src/Mw.dll MwWat32.dll")
|
||||||
|
|
|
||||||
42
LICENSE
42
LICENSE
|
|
@ -1,28 +1,24 @@
|
||||||
Copyright(c) 2025 - 2026, Pyrite development team All rights reserved.
|
Copyright (c) 2025-2026, Pyrite development team
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms,
|
Redistribution and use in source and binary forms, with or without
|
||||||
with or without
|
modification, are permitted provided that the following conditions are met:
|
||||||
modification,
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
are permitted provided that the following conditions are met : *Redistributions of source code must retain the above copyright notice,
|
this list of conditions and the following disclaimer.
|
||||||
this list of conditions and the following disclaimer.* Redistributions in binary form must reproduce the above copyright notice,
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
this list of conditions and the following disclaimer in the documentation and / or other materials provided with the distribution.* Neither the name of the<organization> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
* Neither the name of the <organization> nor the names of its contributors
|
||||||
|
may be used to endorse or promote products derived from this software
|
||||||
|
without specific prior written permission.
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
INCLUDING,
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
BUT NOT LIMITED TO,
|
|
||||||
THE IMPLIED
|
|
||||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
||||||
DIRECT,
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
INDIRECT,
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
INCIDENTAL,
|
|
||||||
SPECIAL,
|
|
||||||
EXEMPLARY,
|
|
||||||
OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
||||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
ON ANY THEORY OF LIABILITY,
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
WHETHER IN CONTRACT,
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
STRICT LIABILITY,
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
OR TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
SOFTWARE,
|
|
||||||
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
|
|
|
||||||
380
NTMakefile
generated
380
NTMakefile
generated
File diff suppressed because one or more lines are too long
588
WatMakefile
generated
588
WatMakefile
generated
File diff suppressed because one or more lines are too long
|
|
@ -94,7 +94,6 @@
|
||||||
<integer name="forceInverted" common="yes" boolean="yes" />
|
<integer name="forceInverted" common="yes" boolean="yes" />
|
||||||
<integer name="isRounded" common="yes" boolean="yes" />
|
<integer name="isRounded" common="yes" boolean="yes" />
|
||||||
<integer name="darkTheme" common="yes" boolean="yes" />
|
<integer name="darkTheme" common="yes" boolean="yes" />
|
||||||
<integer name="acceptsDnD" common="yes" boolean="yes" />
|
|
||||||
<integer name="useMonospace" common="yes" boolean="yes" />
|
<integer name="useMonospace" common="yes" boolean="yes" />
|
||||||
<integer name="fillArea" />
|
<integer name="fillArea" />
|
||||||
<integer name="darkThemeAutomatic" common="yes" boolean="yes" />
|
<integer name="darkThemeAutomatic" common="yes" boolean="yes" />
|
||||||
|
|
@ -192,9 +191,6 @@
|
||||||
<handler name="darkTheme" common="yes">
|
<handler name="darkTheme" common="yes">
|
||||||
<integer pointer="yes" />
|
<integer pointer="yes" />
|
||||||
</handler>
|
</handler>
|
||||||
<handler name="acceptsDnD" common="yes">
|
|
||||||
<integer pointer="yes" />
|
|
||||||
</handler>
|
|
||||||
</handlers>
|
</handlers>
|
||||||
<enumerations>
|
<enumerations>
|
||||||
<enumeration name="MwDIRECTION">
|
<enumeration name="MwDIRECTION">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue