gpt4 book ai didi

linux - gtk helloworld 在 ubuntu 上编译错误

转载 作者:行者123 更新时间:2023-12-04 19:13:14 25 4
gpt4 key购买 nike

我用命令在 ubuntu 上安装了 gtk
sudo apt-get install libgtk-3-dev

然后我将代码复制到vi编辑器中

我在 GTK 中为 helloworld 复制了以下代码,它给出了编译错误

#include <gtk/gtk.h>

/* this is a callback function. the data arguments are ignored in this example..
* More on callbacks below. */
void hello (GtkWidget *widget, gpointer *data)
{
g_print ("Hello World\n");
}

/* another callback */
void destroy (GtkWidget *widget, gpointer *data)
{
gtk_main_quit ();
}

int main (int argc, char *argv[])
{
/* GtkWidget is the storage type for widgets */
GtkWidget *window;
GtkWidget *button;

/* this is called in all GTK applications. arguments are parsed from
* the command line and are returned to the application. */
gtk_init (&argc, &argv);

/* create a new window */
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);

/* when the window is given the "destroy" signal (this can be given
* by the application, or the window manager, the function destroy
* will be called as defined above. The data passed to the callback
* function is NULL and is ignored in the callback. */
gtk_signal_connect (GTK_OBJECT (window), "destroy",
GTK_SIGNAL_FUNC (destroy), NULL);

/* sets the border width of the window. */
gtk_container_border_width (GTK_CONTAINER (window), 10);

/* creates a new button with the label "Hello World". */
button = gtk_button_new_with_label ("Hello World");

/* When the button receives the "clicked" signal, it will call the
* function hello() passing it NULL as it's argument. The hello() function is
* defined above. */
gtk_signal_connect (GTK_OBJECT (button), "clicked",
GTK_SIGNAL_FUNC (hello), NULL);

/* This will cause the window to be destroyed by calling
* gtk_widget_destroy(window) when "clicked. Again, the destroy
* signal could come from here, or the window manager. */
gtk_signal_connect_object (GTK_OBJECT (button), "clicked",
GTK_SIGNAL_FUNC (gtk_widget_destroy),
GTK_OBJECT (window));

/* this packs the button into the window (a gtk container). */
gtk_container_add (GTK_CONTAINER (window), button);

/* the final step is to display this newly created widget... */
gtk_widget_show (button);

/* and the window */
gtk_widget_show (window);

/* all GTK applications must have a gtk_main(). Control ends here
* and waits for an event to occur (like a key press or mouse event). */
gtk_main ();

return 0;
}

然后我编译
gcc -Wall -g HelloWorld.c -o hello_world -L/usr/X11R6/lib -lglib -lgdk -lgtk -lX11 -lXext -lm

它给出了编译错误
  • HelloWorld.c:4:25: fatal error :gtk/gtk.h:没有这样的文件或目录
    #包括

  • 在哪里找到 gtk.h 给出
    /home/user/linux-3.13.0/tools/perf/ui/gtk/gtk.h

    我想使用 gtk 使用最短路径从一个 GPS 坐标到另一个坐标。可能吗? gtkmap API 呢?在哪里可以找到更多详细信息和示例?

    最佳答案

    我不确定,但你的代码似乎有点旧。我敢说它可能使用了大约 Gtk+ 1.2 的某个版本。

    无论如何,我建议你阅读 GNOME 网站上的 Gtk 教程,Getting Started with Gtk+ .它针对当前版本为 3.26(稳定)的 Gtk+3。

    要编译一个简单的 Gtk+ C 应用程序,您将使用 pkg-config将正确的路径转换为指示库。

    让我们从前面指出的指南中举一个非常简单的例子,并将其保存为 main.c :

    #include <gtk/gtk.h>

    static void
    print_hello (GtkWidget *widget,
    gpointer data)
    {
    g_print ("Hello World\n");
    }

    static void
    activate (GtkApplication *app,
    gpointer user_data)
    {
    GtkWidget *window;
    GtkWidget *grid;
    GtkWidget *button;

    /* create a new window, and set its title */
    window = gtk_application_window_new (app);
    gtk_window_set_title (GTK_WINDOW (window), "Window");
    gtk_container_set_border_width (GTK_CONTAINER (window), 10);

    /* Here we construct the container that is going pack our buttons */
    grid = gtk_grid_new ();

    /* Pack the container in the window */
    gtk_container_add (GTK_CONTAINER (window), grid);

    button = gtk_button_new_with_label ("Button 1");
    g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);

    /* Place the first button in the grid cell (0, 0), and make it fill
    * just 1 cell horizontally and vertically (ie no spanning)
    */
    gtk_grid_attach (GTK_GRID (grid), button, 0, 0, 1, 1);

    button = gtk_button_new_with_label ("Button 2");
    g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);

    /* Place the second button in the grid cell (1, 0), and make it fill
    * just 1 cell horizontally and vertically (ie no spanning)
    */
    gtk_grid_attach (GTK_GRID (grid), button, 1, 0, 1, 1);

    button = gtk_button_new_with_label ("Quit");
    g_signal_connect_swapped (button, "clicked", G_CALLBACK (gtk_widget_destroy), window);

    /* Place the Quit button in the grid cell (0, 1), and make it
    * span 2 columns.
    */
    gtk_grid_attach (GTK_GRID (grid), button, 0, 1, 2, 1);

    /* Now that we are done packing our widgets, we show them all
    * in one go, by calling gtk_widget_show_all() on the window.
    * This call recursively calls gtk_widget_show() on all widgets
    * that are contained in the window, directly or indirectly.
    */
    gtk_widget_show_all (window);

    }

    int
    main (int argc,
    char **argv)
    {
    GtkApplication *app;
    int status;

    app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
    g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
    status = g_application_run (G_APPLICATION (app), argc, argv);
    g_object_unref (app);

    return status;
    }

    然后编译它:
    gcc -o main main.c `pkg-config --cflags --libs gtk+-3.0`

    关于 map 问题,我建议 libchamplaingithub project page 上有一些例子在演示文件夹中。

    别忘了查看 GNOME's Map应用程序及其 github page .

    关于linux - gtk helloworld 在 ubuntu 上编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47315297/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com