Unconfigured Ad Widget

Collapse

Anúncio

Collapse
No announcement yet.

Dúvida no Anjuta

Collapse
X
 
  • Filter
  • Tempo
  • Show
Clear All
new posts

  • Font Size
    #1

    C / C++ Dúvida no Anjuta

    Tento executar um programa padrão no Anjuta no Debian,entretanto aparece a seguinte mensagem:

    **Error**: You must have `libtool' installed.

    Mas tenho certeza que a libtool já foi instalada.

    Alguém pode me ajudar?
    Similar Threads

  • Font Size
    #2
    sudo apt-get install libtool-bin

    Vê se funfa

    Engenharia Social - Web Design - Programmer
    __________________________________________________ __________

    sigpic

    Comment


    • Font Size
      #3
      Quase foi

      Quase foi deu esse erro:

      configure: error: Package requirements (gtk+-3.0 >= 2.90.3 ) were not met:
      No package 'gtk+-3.0' found

      Comment


      • Font Size
        #4
        Postado Originalmente por Automake Ver Post
        Quase foi deu esse erro:

        configure: error: Package requirements (gtk+-3.0 >= 2.90.3 ) were not met:
        No package 'gtk+-3.0' found

        Código:
        sudo apt-get install  libgtk-3-dev

        Engenharia Social - Web Design - Programmer
        __________________________________________________ __________

        sigpic

        Comment


        • Font Size
          #5
          OK

          Agora foi:

          Você está de parabéns.

          Pode me ajudar a colocar um button e um label(O label tem que estar em cima do button com o texto chamado 'teste')

          Comment


          • Font Size
            #6
            OK

            Código do programa para quem quer ter uma noção de como fazer um button e um label em C:

            Código:
            #include <gtk/gtk.h>
            
            static void
            print_hello (GtkWidget *widget,
                         gpointer   data)
            {
              g_print ("Ola Mundo.\n");
            }
            
            static void
            activate (GtkApplication *app,
                      gpointer        user_data)
            {
              GtkWidget *window;
              GtkWidget *button;
              GtkWidget *button_box;
            
              window = gtk_application_window_new (app);
              gtk_window_set_title (GTK_WINDOW (window), "Window");
              gtk_window_set_default_size (GTK_WINDOW (window), 200, 200);
            
              button_box = gtk_button_box_new (GTK_ORIENTATION_HORIZONTAL);
              gtk_container_add (GTK_CONTAINER (window), button_box);
            
              button = gtk_button_new_with_label ("Clique aqui");
              g_signal_connect (button, "clicked", G_CALLBACK (print_hello), NULL);
              g_signal_connect_swapped (button, "clicked", G_CALLBACK (gtk_widget_destroy), window);
              gtk_container_add (GTK_CONTAINER (button_box), button);
            
              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;
            }

            Comment

            X
            Working...
            X