Add gtk4-media test

This commit is contained in:
daleclack 2021-03-06 21:14:36 +08:00
parent 03e6cbb78d
commit 31613011ab
6 changed files with 191 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/media-test/.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-media",
"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"
}
]
}

4
Gtk4/media-test/.vscode/settings.json vendored Normal file
View File

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

62
Gtk4/media-test/.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-media",
"-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.

View File

@ -0,0 +1,57 @@
#include <gtk/gtk.h>
static GtkWidget *mediacontrol;
void dialog_response(GtkWidget *widget,int response,gpointer data){
//Get File and set the file to the mediacontrols
if(response==GTK_RESPONSE_OK){
GFile *file=gtk_file_chooser_get_file(GTK_FILE_CHOOSER(widget));
GtkMediaStream *media=gtk_media_file_new_for_file(file);
gtk_media_controls_set_media_stream(GTK_MEDIA_CONTROLS(mediacontrol),media);
}
gtk_window_destroy(GTK_WINDOW(widget));
}
void dialog_open(GtkWidget *widget,GtkWindow *parent){
//Set a dialog and choose the file
GtkWidget *dialog;
GtkFileChooserAction action=GTK_FILE_CHOOSER_ACTION_OPEN;
dialog=gtk_file_chooser_dialog_new("Open Media File",parent,action,
"OK",GTK_RESPONSE_OK,"Cancel",GTK_RESPONSE_CANCEL,NULL);
//Set filter
GtkFileFilter *filter;
filter=gtk_file_filter_new();
gtk_file_filter_add_pattern(filter,"*.mp3");
gtk_file_filter_add_pattern(filter,"*.wav");
gtk_file_filter_add_pattern(filter,"*.flac");
gtk_file_filter_add_pattern(filter,"*.aac");
gtk_file_filter_add_pattern(filter,"*.m4a");
gtk_file_chooser_set_filter(GTK_FILE_CHOOSER(dialog),filter);
g_signal_connect(dialog,"response",G_CALLBACK(dialog_response),NULL);
gtk_widget_show(dialog);
}
static void gtkmain(GtkApplication *app,gpointer user_data){
GtkWidget *window,*vbox,*btnopen;
//Initalize window
window=gtk_application_window_new(app);
gtk_window_set_icon_name(GTK_WINDOW(window),"org.gtk.daleclack");
gtk_window_set_default_size(GTK_WINDOW(window),400,20);
vbox=gtk_box_new(GTK_ORIENTATION_VERTICAL,0);
//Media controls
mediacontrol=gtk_media_controls_new(NULL);
gtk_box_append(GTK_BOX(vbox),mediacontrol);
//"Open File" button
btnopen=gtk_button_new_with_label("Open Media File");
g_signal_connect(btnopen,"clicked",G_CALLBACK(dialog_open),window);
gtk_box_append(GTK_BOX(vbox),btnopen);
gtk_window_set_child(GTK_WINDOW(window),vbox);
gtk_widget_show(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);
}