Add gtk4-test-2

This commit is contained in:
daleclack 2021-02-04 15:39:00 +08:00
parent 396585c548
commit 5a048f5d31
7 changed files with 1173 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
//This is the gtk4 config file on vscode
//Due to no gtk4 on debian and ubuntu till now,the configure only support manjaro(Arch linux may can use it)
"${workspaceFolder}/**",
"/usr/include/gtk-4.0/**",
"/usr/include/pango-1.0/**",
"/usr/include/glib-2.0/**",
"/usr/lib/glib-2.0/include/**",
"/usr/include/harfbuzz/**",
"/usr/include/freetype2/**",
"/usr/include/libpng16/**",
"/usr/include/libmount/**",
"/usr/include/blkid/**",
"/usr/include/fribidi/**",
"/usr/include/cairo/**",
"/usr/include/lzo/**",
"/usr/include/pixman-1/**",
"/usr/include/gdk-pixbuf-2.0/**",
"/usr/include/graphene-1.0/**",
"/usr/lib/graphene-1.0/include/**",
"/usr/include/gio-unix-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
}

29
Gtk4/gtk4-test-2/.vscode/launch.json vendored Normal file
View File

@ -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/gtk4-test",
"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"
}
]
}

View File

@ -0,0 +1,4 @@
{
"C_Cpp.errorSquiggles": "Disabled",
"cmake.configureOnOpen": false
}

62
Gtk4/gtk4-test-2/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,62 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"src/*.cpp",
"-o",
"${workspaceFolder}/bin/gtk4-test",
"-pthread",
"-I${workspaceFolder}/",
"-I/usr/include/gtk-4.0",
"-I/usr/include/pango-1.0",
"-I/usr/include/glib-2.0",
"-I/usr/lib/glib-2.0/include",
"-I/usr/include/harfbuzz",
"-I/usr/include/freetype2",
"-I/usr/include/libpng16",
"-I/usr/include/libmount",
"-I/usr/include/blkid",
"-I/usr/include/fribidi",
"-I/usr/include/cairo",
"-I/usr/include/lzo",
"-I/usr/include/pixman-1",
"-I/usr/include/gdk-pixbuf-2.0",
"-I/usr/include/graphene-1.0",
"-I/usr/lib/graphene-1.0/include",
"-I/usr/include/gio-unix-2.0",
"-mfpmath=sse",
"-msse",
"-msse2",
"-lgtk-4",
"-lpangocairo-1.0",
"-lpango-1.0",
"-lharfbuzz",
"-lgdk_pixbuf-2.0",
"-lcairo-gobject",
"-lcairo",
"-lvulkan",
"-lgraphene-1.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"
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,25 @@
#include <gtk/gtk.h>
#include "res/winpe.xpm"
static void gtkmain(GtkApplication *app,gpointer user_data){
GtkWidget *window,*image,*box;
GdkPixbuf *pixbuf,*sized;
box=gtk_box_new(GTK_ORIENTATION_HORIZONTAL,0);
window=gtk_application_window_new(app);
pixbuf=gdk_pixbuf_new_from_xpm_data(winpe);
sized=gdk_pixbuf_scale_simple(pixbuf,480,360,GDK_INTERP_BILINEAR);
image=gtk_image_new_from_pixbuf(sized);
gtk_widget_set_size_request(image,400,300);
gtk_box_append(GTK_BOX(box),image);
gtk_window_set_child(GTK_WINDOW(window),box);
gtk_widget_show(window);
}
int main(int argc,char *argv[]){
GtkApplication *app;
int status;
app=gtk_application_new("com.daleclack.gtk4.test2",G_APPLICATION_FLAGS_NONE);
g_signal_connect(app,"activate",G_CALLBACK(gtkmain),NULL);
status=g_application_run(G_APPLICATION(app),argc,argv);
return status;
}