Add gtk62
This commit is contained in:
parent
cf7eeb1322
commit
8d4ea3008c
|
@ -0,0 +1,61 @@
|
||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Linux",
|
||||||
|
"includePath": [
|
||||||
|
//For linux amd64 and linux on arm64,some include path may different
|
||||||
|
//Commet and uncomment these lines to compile on a specificed archtiecture
|
||||||
|
//Arm64 linux libs
|
||||||
|
|
||||||
|
"/usr/lib/aarch64-linux-gnu/dbus-1.0/include/**",
|
||||||
|
"/usr/lib/aarch64-linux-gnu/glib-2.0/include",
|
||||||
|
|
||||||
|
//amd64 linux libs(For ubuntu)
|
||||||
|
/*
|
||||||
|
"/usr/lib/x86_64-linux-gnu/dbus-1.0/include",
|
||||||
|
"/usr/lib/x86_64-linux-gnu/glib-2.0/include",
|
||||||
|
*/
|
||||||
|
//For debian and ubuntu,kali
|
||||||
|
|
||||||
|
"/usr/include/gtk-3.0/gtk/**",
|
||||||
|
"/usr/include/uuid/**",
|
||||||
|
|
||||||
|
//For manjaro(Arch linux)
|
||||||
|
/*
|
||||||
|
"/usr/lib/dbus-1.0/include/**",
|
||||||
|
"/usr/lib/glib-2.0/include/**",
|
||||||
|
"/usr/include/lzo/**",
|
||||||
|
"/usr/include/cloudproviders/**",
|
||||||
|
*/
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"/usr/include/gtk-3.0/**",
|
||||||
|
"/usr/include/at-spi2-atk/2.0/**",
|
||||||
|
"/usr/include/at-spi-2.0/**",
|
||||||
|
"/usr/include/dbus-1.0/**",
|
||||||
|
"/usr/include/gio-unix-2.0/**",
|
||||||
|
"/usr/include/cairo/**",
|
||||||
|
"/usr/include/pango-1.0/**",
|
||||||
|
"/usr/include/fribidi/**",
|
||||||
|
"/usr/include/harfbuzz/**",
|
||||||
|
"/usr/include/atk-1.0/**",
|
||||||
|
"/usr/include/pixman-1/**",
|
||||||
|
"/usr/include/freetype2/**",
|
||||||
|
"/usr/include/libpng16/**",
|
||||||
|
"/usr/include/gdk-pixbuf-2.0/**",
|
||||||
|
"/usr/include/libmount/**",
|
||||||
|
"/usr/include/blkid/**",
|
||||||
|
"/usr/include/glib-2.0/**"
|
||||||
|
],
|
||||||
|
"defines": [],
|
||||||
|
"compilerPath": "/usr/bin/gcc",
|
||||||
|
"cStandard": "gnu17",
|
||||||
|
"cppStandard": "gnu++14",
|
||||||
|
"intelliSenseMode": "gcc-arm64",
|
||||||
|
"compilerArgs": [
|
||||||
|
"`pkg-config --cflags --libs gtk+-3.0`"
|
||||||
|
],
|
||||||
|
"configurationProvider": "ms-vscode.cmake-tools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "g++ - Build and debug active file",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/bin/gtk62",
|
||||||
|
"args": [],
|
||||||
|
"stopAtEntry": false,
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"environment": [],
|
||||||
|
"externalConsole": false,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"setupCommands": [
|
||||||
|
{
|
||||||
|
"description": "Enable pretty-printing for gdb",
|
||||||
|
"text": "-enable-pretty-printing",
|
||||||
|
"ignoreFailures": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"preLaunchTask": "C/C++: g++ build active file",
|
||||||
|
"miDebuggerPath": "/usr/bin/gdb"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"C_Cpp.errorSquiggles": "Disabled",
|
||||||
|
"cmake.configureOnOpen": false
|
||||||
|
}
|
|
@ -0,0 +1,83 @@
|
||||||
|
{
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"type": "cppbuild",
|
||||||
|
"label": "C/C++: g++ build active file",
|
||||||
|
"command": "/usr/bin/g++",
|
||||||
|
"args": [
|
||||||
|
"-g",
|
||||||
|
"src/*.cpp",
|
||||||
|
"-o",
|
||||||
|
"${workspaceFolder}/bin/gtk62",
|
||||||
|
"-pthread",
|
||||||
|
//For Arm64 linux
|
||||||
|
|
||||||
|
"-I/usr/lib/aarch64-linux-gnu/dbus-1.0/include",
|
||||||
|
"-I/usr/lib/aarch64-linux-gnu/glib-2.0/include",
|
||||||
|
|
||||||
|
//For amd64 linux
|
||||||
|
/*
|
||||||
|
"-I/usr/lib/x86_64-linux-gnu/dbus-1.0/include",
|
||||||
|
"-I/usr/lib/x86_64-linux-gnu/glib-2.0/include",
|
||||||
|
*/
|
||||||
|
//Ubuntu and kali include paths
|
||||||
|
|
||||||
|
"-I/usr/include/uuid",
|
||||||
|
|
||||||
|
//Manjaro linux and Arch linux include args
|
||||||
|
|
||||||
|
"-I${workspaceFolder}",
|
||||||
|
/*
|
||||||
|
"-I/usr/lib/glib-2.0/include",
|
||||||
|
"-I/usr/lib/dbus-1.0/include",
|
||||||
|
"-I/usr/include/lzo",
|
||||||
|
"-I/usr/include/cloudproviders",
|
||||||
|
*/
|
||||||
|
"-I/usr/include/gtk-3.0",
|
||||||
|
"-I/usr/include/at-spi2-atk/2.0",
|
||||||
|
"-I/usr/include/at-spi-2.0",
|
||||||
|
"-I/usr/include/dbus-1.0",
|
||||||
|
"-I/usr/include/gio-unix-2.0",
|
||||||
|
"-I/usr/include/cairo",
|
||||||
|
"-I/usr/include/pango-1.0",
|
||||||
|
"-I/usr/include/fribidi",
|
||||||
|
"-I/usr/include/harfbuzz",
|
||||||
|
"-I/usr/include/atk-1.0",
|
||||||
|
"-I/usr/include/pixman-1",
|
||||||
|
"-I/usr/include/freetype2",
|
||||||
|
"-I/usr/include/libpng16",
|
||||||
|
"-I/usr/include/gdk-pixbuf-2.0",
|
||||||
|
"-I/usr/include/libmount",
|
||||||
|
"-I/usr/include/blkid",
|
||||||
|
"-I/usr/include/glib-2.0",
|
||||||
|
//Manjaro linux lib args
|
||||||
|
//"-lz",
|
||||||
|
|
||||||
|
"-lgtk-3",
|
||||||
|
"-lgdk-3",
|
||||||
|
"-lpangocairo-1.0",
|
||||||
|
"-lpango-1.0",
|
||||||
|
"-lharfbuzz",
|
||||||
|
"-latk-1.0",
|
||||||
|
"-lcairo-gobject",
|
||||||
|
"-lcairo",
|
||||||
|
"-lgdk_pixbuf-2.0",
|
||||||
|
"-lgio-2.0",
|
||||||
|
"-lgobject-2.0",
|
||||||
|
"-lglib-2.0",
|
||||||
|
],
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$gcc"
|
||||||
|
],
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"detail": "Task generated by Debugger."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": "2.0.0"
|
||||||
|
}
|
|
@ -0,0 +1,102 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generated with glade 3.38.2 -->
|
||||||
|
<interface>
|
||||||
|
<requires lib="gtk+" version="3.24"/>
|
||||||
|
<object class="GtkWindow" id="window">
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="default-width">440</property>
|
||||||
|
<property name="default-height">250</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkStackSidebar">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stack">stack1</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkStack" id="stack1">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="transition-type">crossfade</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">label1</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="name">page0</property>
|
||||||
|
<property name="title" translatable="yes">page0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">label2</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="name">page1</property>
|
||||||
|
<property name="title" translatable="yes">page1</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">2</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</interface>
|
|
@ -0,0 +1,102 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generated with glade 3.38.2 -->
|
||||||
|
<interface>
|
||||||
|
<requires lib="gtk+" version="3.24"/>
|
||||||
|
<object class="GtkWindow" id="window">
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="default-width">440</property>
|
||||||
|
<property name="default-height">250</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkStackSidebar">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="stack">stack1</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkStack" id="stack1">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="transition-type">over-up</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">label1</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="name">page0</property>
|
||||||
|
<property name="title" translatable="yes">page0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<object class="GtkBox">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="orientation">vertical</property>
|
||||||
|
<child>
|
||||||
|
<object class="GtkLabel">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="can-focus">False</property>
|
||||||
|
<property name="label" translatable="yes">label2</property>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
<child>
|
||||||
|
<placeholder/>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="name">page1</property>
|
||||||
|
<property name="title" translatable="yes">page1</property>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
<packing>
|
||||||
|
<property name="expand">False</property>
|
||||||
|
<property name="fill">True</property>
|
||||||
|
<property name="position">2</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</child>
|
||||||
|
</object>
|
||||||
|
</interface>
|
|
@ -0,0 +1,19 @@
|
||||||
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
|
static void gtkmain(GtkApplication *app,gpointer user_data){
|
||||||
|
GtkBuilder *builder=gtk_builder_new_from_file("res/window.ui");
|
||||||
|
GtkWidget *window,*stack;
|
||||||
|
window=(GtkWidget*)gtk_builder_get_object(builder,"window");
|
||||||
|
gtk_window_set_icon_name(GTK_WINDOW(window),"org.gtk.daleclack");
|
||||||
|
stack=(GtkWidget*)gtk_builder_get_object(builder,"stack1");
|
||||||
|
gtk_stack_set_visible_child_name(GTK_STACK(stack),"Child1");
|
||||||
|
gtk_application_add_window(app,GTK_WINDOW(window));
|
||||||
|
gtk_widget_show_all(window);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc,char **argv){
|
||||||
|
GtkApplication *app;
|
||||||
|
app=gtk_application_new("org.gtk.daleclack",G_APPLICATION_NON_UNIQUE);
|
||||||
|
g_signal_connect(app,"activate",G_CALLBACK(gtkmain),NULL);
|
||||||
|
return g_application_run(G_APPLICATION(app),argc,argv);
|
||||||
|
}
|
Loading…
Reference in New Issue