diff --git a/Gtk3/gtk14/Makefile.win b/Gtk3/gtk14/Makefile.win new file mode 100644 index 0000000..64966f7 --- /dev/null +++ b/Gtk3/gtk14/Makefile.win @@ -0,0 +1,28 @@ +# Project: gtk14 +# Makefile created by Dev-C++ 5.11 + +CPP = g++.exe +CC = gcc.exe +WINDRES = windres.exe +OBJ = main.o +LINKOBJ = main.o +LIBS = -L"C:/Dev-Cpp/MinGW64/x86_64-w64-mingw32/lib32" -L"C:/Dev-Cpp/gtk+/lib" -static-libgcc -lgtk-3 -lgdk-3 -lgdi32 -limm32 -lshell32 -lole32 -Wl,-luuid -lpangocairo-1.0 -lpangoft2-1.0 -lfreetype -lfontconfig -lpangowin32-1.0 -lgdi32 -lpango-1.0 -lm -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lintl -mwindows -m32 +INCS = -I"C:/Dev-Cpp/MinGW64/include" -I"C:/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"C:/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/5.1.0/include" -I"C:/Dev-Cpp/gtk+/include/gtk-3.0" -I"C:/Dev-Cpp/gtk+/include/cairo" -I"C:/Dev-Cpp/gtk+/include/pango-1.0" -I"C:/Dev-Cpp/gtk+/include/atk-1.0" -I"C:/Dev-Cpp/gtk+/include/cairo" -I"C:/Dev-Cpp/gtk+/include/pixman-1" -I"C:/Dev-Cpp/gtk+/include" -I"C:/Dev-Cpp/gtk+/include/freetype2" -I"C:/Dev-Cpp/gtk+/include" -I"C:/Dev-Cpp/gtk+/include/libpng15" -I"C:/Dev-Cpp/gtk+/include/gdk-pixbuf-2.0" -I"C:/Dev-Cpp/gtk+/include/libpng15" -I"C:/Dev-Cpp/gtk+/include/glib-2.0" -I"C:/Dev-Cpp/gtk+/lib/glib-2.0/include" -I"C:/Dev-Cpp/gtk+/include/gtk-3.0/gtk" +CXXINCS = -I"C:/Dev-Cpp/MinGW64/include" -I"C:/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"C:/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/5.1.0/include" -I"C:/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/5.1.0/include/c++" -I"C:/Dev-Cpp/gtk+/include/gtk-3.0" -I"C:/Dev-Cpp/gtk+/include/cairo" -I"C:/Dev-Cpp/gtk+/include/pango-1.0" -I"C:/Dev-Cpp/gtk+/include/atk-1.0" -I"C:/Dev-Cpp/gtk+/include/cairo" -I"C:/Dev-Cpp/gtk+/include/pixman-1" -I"C:/Dev-Cpp/gtk+/include" -I"C:/Dev-Cpp/gtk+/include/freetype2" -I"C:/Dev-Cpp/gtk+/include" -I"C:/Dev-Cpp/gtk+/include/libpng15" -I"C:/Dev-Cpp/gtk+/include/gdk-pixbuf-2.0" -I"C:/Dev-Cpp/gtk+/include/libpng15" -I"C:/Dev-Cpp/gtk+/include/glib-2.0" -I"C:/Dev-Cpp/gtk+/lib/glib-2.0/include" -I"C:/Dev-Cpp/gtk+/include/gtk-3.0/gtk" +BIN = gtk14.exe +CXXFLAGS = $(CXXINCS) -m32 +CFLAGS = $(INCS) -m32 +RM = rm.exe -f + +.PHONY: all all-before all-after clean clean-custom + +all: all-before $(BIN) all-after + +clean: clean-custom + ${RM} $(OBJ) $(BIN) + +$(BIN): $(OBJ) + $(CPP) $(LINKOBJ) -o $(BIN) $(LIBS) + +main.o: main.cpp + $(CPP) -c main.cpp -o main.o $(CXXFLAGS) diff --git a/Gtk3/gtk14/gtk14.dev b/Gtk3/gtk14/gtk14.dev new file mode 100644 index 0000000..cff4949 --- /dev/null +++ b/Gtk3/gtk14/gtk14.dev @@ -0,0 +1,62 @@ +[Project] +FileName=gtk14.dev +Name=gtk14 +Type=0 +Ver=2 +ObjFiles= +Includes= +Libs= +PrivateResource= +ResourceIncludes= +MakeIncludes= +Compiler= +CppCompiler= +Linker= +IsCpp=1 +Icon= +ExeOutput= +ObjectOutput= +LogOutput= +LogOutputEnabled=0 +OverrideOutput=0 +OverrideOutputName=gtk14.exe +HostApplication= +UseCustomMakefile=0 +CustomMakefile= +CommandLine= +Folders= +IncludeVersionInfo=0 +SupportXPThemes=0 +CompilerSet=10 +CompilerSettings=0000000100000000000000000 +UnitCount=1 + +[VersionInfo] +Major=1 +Minor=0 +Release=0 +Build=0 +LanguageID=1033 +CharsetID=1252 +CompanyName= +FileVersion=1.0.0.0 +FileDescription=Developed using the Dev-C++ IDE +InternalName= +LegalCopyright= +LegalTrademarks= +OriginalFilename= +ProductName= +ProductVersion=1.0.0.0 +AutoIncBuildNr=0 +SyncProduct=1 + +[Unit1] +FileName=main.cpp +CompileCpp=1 +Folder= +Compile=1 +Link=1 +Priority=1000 +OverrideBuildCmd=0 +BuildCmd= + diff --git a/Gtk3/gtk14/gtk14.layout b/Gtk3/gtk14/gtk14.layout new file mode 100644 index 0000000..992925e --- /dev/null +++ b/Gtk3/gtk14/gtk14.layout @@ -0,0 +1,8 @@ +[Editors] +Order=0 +Focused=0 +[Editor_0] +CursorCol=49 +CursorRow=9 +TopLine=1 +LeftChar=1 diff --git a/Gtk3/gtk14/main.cpp b/Gtk3/gtk14/main.cpp new file mode 100644 index 0000000..4ebd1b4 --- /dev/null +++ b/Gtk3/gtk14/main.cpp @@ -0,0 +1,41 @@ +#include +void hello(GtkWidget *widget,gpointer data){ + GtkWidget *dialog; + GtkWidget *content_area; + GtkWidget *label; + const gchar *txt; + txt=gtk_entry_get_text(GTK_ENTRY(data));//Get text + dialog=gtk_dialog_new(); + gtk_window_set_title(GTK_WINDOW(dialog),"gtk(14)"); + gtk_window_set_default_size(GTK_WINDOW(dialog),200,90); + gtk_window_set_position(GTK_WINDOW(dialog),GTK_WIN_POS_CENTER); + gtk_dialog_add_button(GTK_DIALOG(dialog),"OK",GTK_RESPONSE_OK); + content_area=gtk_dialog_get_content_area(GTK_DIALOG(dialog)); + label=gtk_label_new(txt); + g_signal_connect_swapped(dialog,"response",G_CALLBACK(gtk_widget_destroy),dialog); + gtk_container_add(GTK_CONTAINER(content_area),label); + gtk_widget_show_all(dialog); +} +int main(int argc,char *argv[]){ + GtkWidget *window; + GtkWidget *fixed; + GtkWidget *button; + GtkWidget *entry; + gtk_init(&argc,&argv); + window=gtk_window_new(GTK_WINDOW_TOPLEVEL);//Create a new window + g_signal_connect(G_OBJECT(window),"destroy",G_CALLBACK(gtk_main_quit),NULL);//Make sure the application exit normally + gtk_window_set_title(GTK_WINDOW(window),"gtk(14)");//Title of the window + gtk_window_set_default_size(GTK_WINDOW(window),150,80);//Size of the window + gtk_window_set_position(GTK_WINDOW(window),GTK_WIN_POS_CENTER);//Position of the window + fixed=gtk_fixed_new();//Greate a gtk_fixed to place widgets + gtk_container_add(GTK_CONTAINER(window),fixed);//Add it to the window + entry=gtk_entry_new();//Create a text entry + gtk_fixed_put(GTK_FIXED(fixed),entry,0,15);//Put the text entry at fixed position + button=gtk_button_new_with_label("hello");//A new button + gtk_widget_set_size_request(button,70,20);//Size of the button + gtk_fixed_put(GTK_FIXED(fixed),button,40,50);//Add the button at the fixed place + g_signal_connect(G_OBJECT(button),"clicked",G_CALLBACK(hello),(gpointer)entry);//Make resoonse when click the button + gtk_widget_show_all(window); + gtk_main(); + return 0; +} diff --git a/testing-repository b/testing-repository deleted file mode 160000 index fd006ed..0000000 --- a/testing-repository +++ /dev/null @@ -1 +0,0 @@ -Subproject commit fd006edebac8478a236b903538e173957f435ed4