Re: gtkdialog maximum size

2017-09-13 Thread Rúben Rodrigues
Thanks. I don't solved my other problem yet. I leave the problem with two dialog for other time. But using GtkScrolledWindow i resolved this problem. Why are you saying that using a scrolled window with parts invisible is not user frindly? Best regards, Ruben Às 11:16 de 13/09/2017, Stefan

gtkdialog maximum size

2017-09-13 Thread Rúben Rodrigues
Hi guys, Someone knows how to limite the maximum size of gtkdialog? My problem is that as the dialog does resize itself, sometimes it gets bigger that the screen. You can see here: https://ibin.co/3a9dsXej5ArN.png Best regards, Ruben Rodrigues --- Este e-mail foi verificado em termos de

Re: Show dialog after hide another

2017-09-09 Thread Rúben Rodrigues
Please!! Help.. Às 17:08 de 06/09/2017, Rúben Rodrigues escreveu: > Hi guys, > > > I have i problem when trying to hide a dialog and show another at the > same moment. > > I have a dialog that have an OK button that calls this function: > > void on_button_Util_Firmwa

Show dialog after hide another

2017-09-06 Thread Rúben Rodrigues
Hi guys, I have i problem when trying to hide a dialog and show another at the same moment. I have a dialog that have an OK button that calls this function: void on_button_Util_Firmware_Update_clicked(GtkButton *button, gpointer user_data) {     GtkLabel    *gLabel_Result;     FILE       

Add idle timout to Menu

2017-07-08 Thread Rúben Rodrigues
Hi guys, Someone knows any way to add a timeout to a Menu because of touchscreen keypress idle event? Thanks --- Este e-mail foi verificado em termos de vírus pelo software antivírus Avast. https://www.avast.com/antivirus ___ gtk-app-devel-list

Combobox on touchscreen

2017-06-27 Thread Rúben Rodrigues
Hi guys, Following this post that didn't receive an answer https://mail.gnome.org/archives/gtk-app-devel-list/2016-June/msg00030.html , want to ask if someone knows this problem. Sometimes combobox works, but i think that is dificult to change the state of the combobox. There is a workaround?

gtk_rgba_parse retunr wrong color

2017-06-23 Thread Rúben Rodrigues
Hi, Someone knows why gdk_rgba_parse returns worng color? I have this gdk_rgba_parse(_color,"rgb(8,178,23)"); cairo_set_source_rgba(cr, front_color.red, front_color.blue, front_color.green, front_color.alpha); The color should be green but returns blue... Thanks --- Este e-mail foi

Creating custom widget linker error

2017-06-23 Thread Rúben Rodrigues
Hi, I'm trying to create a custom widget like in this example: http://djcj.org/gtk/ The example works, but when i try to make something similar i get a linker error, and don't understand why! Error: make all Building target: ConsolaGrafica Invoking: Cross GCC Linker arm-linux-gnueabihf-gcc

Re.: GtkDrawingArea size request

2017-06-22 Thread Rúben Rodrigues
Solved. Someone have a example of how to create a custom widget with cairo in C? Thanks Mensagem original Assunto: Fwd: GtkDrawingArea size request De: Rúben Rodrigues Para: gtk-app-devel-list@gnome.org CC: Someone received my question? Thanks Mensagem

GtkDrawingArea size request

2017-06-22 Thread Rúben Rodrigues
Hi, I create a drawing area to draw a circular gauge with cairo. GtkWidget *drawing_area = gtk_drawing_area_new (); gtk_widget_set_size_request (drawing_area, 100, 100); gtk_box_pack_start (GTK_BOX(gtk_builder_get_object(builder, "box30")),drawing_area,FALSE,TRUE,0); The problem is

Fwd: GtkDrawingArea size request

2017-06-21 Thread Rúben Rodrigues
Someone received my question? Thanks Mensagem reencaminhada Assunto:GtkDrawingArea size request Data: Wed, 21 Jun 2017 10:08:15 +0100 De: Rúben Rodrigues <ruben...@live.com.pt><mailto:ruben...@live.com.pt> Para: gtk-app-devel-list@gnome.org<mailt

Re: undefined reference to gtk label set xalign

2017-06-19 Thread Rúben Rodrigues
6/2017, Chris Moller escreveu: ldconfig creates links and caches for runtime libraries. It looks like, even though you've installed GTK+ 3.22, it's not yet in the runtime library path and you're still linking to GTK+ 3.14, which doesn't have gtk_label_set_xalign. Running ldconfig might fix this.

undefined reference to gtk label set xalign

2017-06-16 Thread Rúben Rodrigues
Hi guys, Someone could help with this? https://stackoverflow.com/questions/44547398/undefined-reference-to-gtk-label-set-xalign Thanks --- Este e-mail foi verificado em termos de vírus pelo software antivírus Avast. https://www.avast.com/antivirus

Re: Integrate IP Camera stream in GTK app

2017-06-14 Thread Rúben Rodrigues
Hi Eric, I know that we can do with gstreamer, but i'm using an raspberry pi and what i tested dont't works because raspberry pi just shows an image of camera and don't play the stream. I get an error of "computer to slow", but just stay slow after run gstreamer. I used vlc too, and in my

Integrate IP Camera stream in GTK app

2017-06-13 Thread Rúben Rodrigues
Hi guys, Someone knows how to integrate IP Camera stream in GTK+ app? I tested with libvlc an gstreamer in my raspberrry pi, but don't works.. Any other library to make this? Thanks Rúben --- Este e-mail foi verificado em termos de vírus pelo software antivírus Avast.

Gtk Assistant check entries

2017-05-15 Thread Rúben Rodrigues
Hi guys, I ahve a assistant page, and i want to check all entrie in first page to mark as complete. You can see assistant here: https://ibin.co/3MXmlhjIHrgA.png I used GtkEditable -> changed signal, but after i changed entrie there is no call to the function callback: static void

Gtk+3.22 compile app error

2017-04-22 Thread Rúben Rodrigues
Hi guys, I'm working with raspbian and the version installed by apt-get install is older, so i download and compile 3.22 version and installed. Now when i'm trying to compile my application i get this error: - undefined reference to `pango_fc_font_map_config_changed'. The newest version need

CheckButton background color

2017-04-21 Thread Rúben Rodrigues
Hi, Someone knows how to change gtkcheckbutton background and size in CSS? i tried this: Checkbutton CSS for Red: GtkCheckButton .check { background: red; color: white; min-width: 8px; min-height: 8px; border-width: 0px; } and checkbutton check { background: red; color: white;

Update Gtk+3.0

2017-04-21 Thread Rúben Rodrigues
Hi guys, I'm in trouble with gtk version i think. When i run pkg-config --modversion gtk+-3.0 in my Raspberry Pi that is running Raspbian OS, i get 3.14.5 version. If i try to update with sudo apt-get update and sudo apt-get upgrade, i have the same version. How i can update to gtk+-3.20

Doubt

2017-04-21 Thread Rúben Rodrigues
; xTempToggle.series = pxLogView_TempSensors[iProbe].series; g_signal_connect((GObject *)pxLogView_TempSensors[iProbe].cButton, "toggled", (GCallback)series_toggled, ); Someone could help me? Why it give always xTempToggle null in series_toggled callback function? -- Rúben Rodrigues AUT

scroll bar

2017-04-19 Thread Rúben Rodrigues
Hi guys, Someone could help with scroll bar, zoom gesture and pan gesture ? I add this zoom callback, and i need to change the scroll bar. But i don't understand the paramentes of gtk_adjustment_configure(). static void zoom_scale_changed (GtkGestureZoom *gesture, gdouble

gtk function with argv

2017-04-08 Thread Rúben Rodrigues
Why guys, I have a doubt that is more about C language that gtk+ but it's to apply to gtk+. I have this function: GtkChart vChart_Init(GtkWidget *widget, GtkSeries *series) My doubt is: How can i use function like this: vChart_Init(GTK_WIDGET(widget), "Series A", "Series B", "Series C"); I

Re: SpinButton size

2017-03-29 Thread Rúben Rodrigues
Hi, Thsnks. I need for GTK3 On 29-03-2017 08:51, Stefan Salewski wrote: > On Mon, 2017-03-27 at 14:23 +0000, Rúben Rodrigues wrote: >> hi guysm >> >> it's possible to change size of spinbuttons? In touchscreen mode >> spinbutton are still small.. We can change it'

Re: gdk_threads_leave is possible to cause segmentation fault?

2017-03-28 Thread Rúben Rodrigues
Thanks! So i could replate enter and leave to g_iddle_add, right? gdk_threads_enter(); g_printf("UpdateConfigNow\n"); iUpdateConfigNow(); gdk_threads_leave(); To g_idle_add((GCallback)iUpdateConfigNow, NULL); Why i get this error? Main.c:1824: undefined reference to `g_iddle_add' Thanks

SpinButton size

2017-03-28 Thread Rúben Rodrigues
hi guysm it's possible to change size of spinbuttons? In touchscreen mode spinbutton are still small.. We can change it's size with css provider? Thanks ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

gdk_threads_leave is possible to cause segmentation fault?

2017-03-28 Thread Rúben Rodrigues
Hi guys, My application sometimes have segmentation fault error. In debug mode and using g_print() i see that the applications stops in gdk_thread_leave function. In gdk manual i see thath gdk_threads_enter and leave has been deprecated and alll gdk and gtk+ calls should be made from main

How can i change background color of first column data

2017-03-24 Thread Rúben Rodrigues
Hi guys, I have a problem with treeview. My first column of treeview where we have data, is yellow. I want to change to other color. How i make this in css? I changed the background color of column header with this code: column-header .button{ background-color: #5b5b5b; color: black;

Re: How use gnome-calculator in my gtk+ app

2017-03-24 Thread Rúben Rodrigues
an applications UI in another's one, e.g. GtkSocket/GtkPlug and/or other solutions. Regards, Robert On Wed, Mar 22, 2017 at 11:28 AM Rúben Rodrigues <ruben...@live.com.pt<mailto:ruben...@live.com.pt>> wrote: Hi guys, I need to add to my app a calculator. It's possible to add gnome-calcula

How use gnome-calculator in my gtk+ app

2017-03-22 Thread Rúben Rodrigues
Hi guys, I need to add to my app a calculator. It's possible to add gnome-calculator as child of a container in my app? Thanks Ruben --- Este e-mail foi verificado em termos de vírus pelo software antivírus Avast. https://www.avast.com/antivirus

Detect user idle time or inactivity

2017-03-20 Thread Rúben Rodrigues
Hi guys, There is any way to detect user inactivity in my application? Thanks Ruben ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: on screen keyboard error with gtk_main_do_event

2017-03-18 Thread Rúben Rodrigues
Someone could help me? Thanks On 16-03-2017 16:54, Ruben ROdrigues wrote: > HI guys, > > I have a on-screen keyboard that was made for gtk2. Now in gtk3 i get > this errors: > > Gdk-CRITICAL **: gdk_window_get_user_data: assertion 'GDK_IS_WINDOW > (window)' failed > > Gdk-CRITICAL **:

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
3, Stefan Salewski wrote: > On Thu, 2017-03-16 at 09:55 +, Rúben Rodrigues wrote: >> Hi, >> >> THanks. This is dynamically? I need in c language if possible :S >> >> Thanks > Yes. The example > > https://github.com/ngtk3/nim-gtk3/blob/master/test/colo

on screen keyboard error with gtk_main_do_event

2017-03-16 Thread Rúben Rodrigues
HI guys, I have a on-screen keyboard that was made for gtk2. Now in gtk3 i get this errors: Gdk-CRITICAL **: gdk_window_get_user_data: assertion 'GDK_IS_WINDOW (window)' failed Gdk-CRITICAL **: gdk_window_get_display: assertion 'GDK_IS_WINDOW (window)' failed Gdk-WARNING **: Event with

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
You are right. I don't know why don't works before, because I had already tested and doesn't work... BU apparently now works with gdk_screen_get_default(); THanks for your help. On 16-03-2017 14:07, Tilo Villwock wrote: > Am Donnerstag, den 16.03.2017, 13:50 + schrieb Rúben Rodrig

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
+ itself. > > If you want to avoid all of this, use a CSS class; you can add a class > programmatically using gtk_style_context_add_class() or you can > specify the class in the GtkBuilder XML file. > > Ciao, > Emmanuele. > > > On 16 March 2017 at 12:49, Rúben Rodr

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
E_PROVIDER (css_provider), G_MAXUINT); On 16-03-2017 13:19, Tilo Villwock wrote: > Am Donnerstag, den 16.03.2017, 12:49 + schrieb Rúben Rodrigues: >> I provide my code in previous emails. >> >> This is my code now: >> >> if(css_provider == NULL){ >&

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
gt; Emmanuele. > > > On 16 March 2017 at 12:49, Rúben Rodrigues <ruben...@live.com.pt> wrote: >> I provide my code in previous emails. >> >> This is my code now: >> >> if(css_provider == NULL){ >> css_provider = gtk_css_provider_new();

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
nerstag, den 16.03.2017, 11:58 + schrieb Rúben Rodrigues: >> Hi, >> >> This is what i have, and don't works... > The code I provided works. What GTK3 version are you using? Also nobody > will be able to help you if you don't show us your code. > > --Tilo _

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
Hi, This is what i have, and don't works... On 16-03-2017 11:20, Tilo Villwock wrote: > Am Donnerstag, den 16.03.2017, 09:55 + schrieb Rúben Rodrigues: >> Hi, >> >> THanks. This is dynamically? I need in c language if possible :S > Dynamic version: > >

How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
Please help me. I don't see nothing with web to change label color dynamically but i need this urgent THanks again! On 16-03-2017 09:55, Rúben Rodrigues wrote: > Hi, > > THanks. This is dynamically? I need in c language if possible :S > > Thanks > > > On 16-03-2017 07:2

Re: How to change GTK+3 label color dynamically

2017-03-16 Thread Rúben Rodrigues
Hi, THanks. This is dynamically? I need in c language if possible :S Thanks On 16-03-2017 07:29, Stefan Salewski wrote: > On Wed, 2017-03-15 at 15:11 +0000, Rúben Rodrigues wrote: >> Hi, >> >> Now i need to change GtkLabel color dinamically, so i thing that i >> can'

How to change GTK+3 label color dynamically

2017-03-15 Thread Rúben Rodrigues
Hi, Now i need to change GtkLabel color dinamically, so i thing that i can't use Css to do this.. I do this in Gtk2: gtk_widget_modify_fg(GTK_WIDGET(gtk_builder_get_object(builder,"label")),GTK_STATE_NORMAL, ); How can i change the color in Gtk3? Thanks

Re: gtk3 layout background image

2017-03-15 Thread Rúben Rodrigues
: Segoe UI; font-weight: lighter; font-size: 25px; } Thanks On 14-03-2017 14:46, Emmanuele Bassi wrote: > On 14 March 2017 at 14:31, Rúben Rodrigues <ruben...@live.com.pt> wrote: >> Just window can have background? > I was referring to GdkWindow, not GtkWindow. > > Gtk

Re: gtk3 layout background image

2017-03-15 Thread Rúben Rodrigues
Thanks, it works! On 15-03-2017 12:49, mhora...@gmail.com wrote: > You need to give the widget a "name" property - than you can select it > in CSS! > > Best, > Martin > > On Wed, 2017-03-15 at 10:28 +, Rúben Rodrigues wrote: >> Hi, >> >> I see

Re: gtk3 layout background image

2017-03-15 Thread Rúben Rodrigues
-family: Segoe UI; font-size: 25px; } And don't change label_Avg_Temp_value . What is the correct way to change a specific widget? Thanks Às 14:46 de 14/03/2017, Emmanuele Bassi escreveu: > On 14 March 2017 at 14:31, Rúben Rodrigues <ruben...@live.com.pt> wrote: >> Just

Re: gtk3 layout background image

2017-03-14 Thread Rúben Rodrigues
Thanks again! So, i will test with gtkbox. thanks for explanation.. Às 14:46 de 14/03/2017, Emmanuele Bassi escreveu: > On 14 March 2017 at 14:31, Rúben Rodrigues <ruben...@live.com.pt> wrote: >> Just window can have background? > I was referring to GdkWindow, not GtkWindow

Re: gtk3 layout background image

2017-03-14 Thread Rúben Rodrigues
; https://developer.gnome.org/gtk3/stable/GtkBox.html > > Ciao, > Emmanuele. > > > On 14 March 2017 at 13:55, Rúben Rodrigues <ruben...@live.com.pt> wrote: >> Thanks! >> >> But in GTK+2 we could change background in layout with this: >> >> // S

Re: gtk3 layout background image

2017-03-14 Thread Rúben Rodrigues
GtkLayout into a parent container that does draw a > background. You will, of course, need to style the parent container's > background, not the GtkLayout itself. > > Ciao, > Emmanuele. > > > On 14 March 2017 at 12:43, Rúben Rodrigues <ruben...@live.com.pt> wrote:

Re: gtk3 layout background image

2017-03-14 Thread Rúben Rodrigues
apply_css(gtk_builder_get_object(builder,"window_Main"),css_provider); This is the code used in gtk3-demo and don't works for me.. Why THanks On 14-03-2017 10:00, Rúben Rodrigues wrote: > Hi guys, > > Finnaly i migrate my application to gtk+3. So, now i neet to change some > things l

gtk3 layout background image

2017-03-14 Thread Rúben Rodrigues
Hi guys, Finnaly i migrate my application to gtk+3. So, now i neet to change some things like image background. I used css provider like in this : custom.css file: GtkLayout:layout_Home{ background-color: black; } C Program: GFile *file= g_file_new_for_path("custom.css");

Re: Migrate to gtk3.0

2017-03-10 Thread Rúben Rodrigues
: > On 10 March 2017 at 15:11, Rúben Rodrigues <ruben...@live.com.pt> wrote: >> Hi, >> >> i'm trying to migrate from gtk2.0 to gtk3.0 and i'm following gnome >> tutorial >> https://developer.gnome.org/gtk3/stable/gtk-migrating-2-to-3.html#id-1.6

Migrate to gtk3.0

2017-03-10 Thread Rúben Rodrigues
Hi, i'm trying to migrate from gtk2.0 to gtk3.0 and i'm following gnome tutorial https://developer.gnome.org/gtk3/stable/gtk-migrating-2-to-3.html#id-1.6.3.3 When i put make CFLAGS+="-DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED" to don't use deprecated symbols I get this errors:

Re: Homogeneous table

2017-03-10 Thread Rúben Rodrigues
HI, Thanks for your reply. NExt i will change to gtk3, but i think that i need to change many things.. It could be simple to make a homogeneous table and hide images, unfortunately not.. On 09-03-2017 18:59, cecas...@aol.com wrote: Hi Ruben, Consider using a drawing

Homogeneous table

2017-03-09 Thread Rúben Rodrigues
Hi guys, I have this table : https://ibin.co/3EyWlgNYl1uK.png This table have 5 columns, each column has an image. I just want to see one image at a time, but I do not want to center that image, that is, I want to see it in its correct position. SO, when i do this next code image should be in

Re: Gtk+ progress bar color

2017-03-08 Thread Rúben Rodrigues
Thanks for your help... Yes i don't understand why gtk doesn't aloow us to do some "basic" things.. On 08-03-2017 14:52, Stefan Salewski wrote: > On Wed, 2017-03-08 at 14:18 +, Rúben Rodrigues wrote: >> I asked to the Google before, but he don't gi

GtkImage XAlign dynamically

2017-03-08 Thread Rúben Rodrigues
Hi, In glade gtkImage have xalign property to change image alignment. How can i change this in code dynamically? Thanks ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Gtk+ progress bar color

2017-03-08 Thread Rúben Rodrigues
I tried before run my app with different them like black but don't works. So if we don't should change the colors, why themes doesn't change too? On 08-03-2017 15:11, Stefan Salewski wrote: > On Wed, 2017-03-08 at 15:00 +0000, Rúben Rodrigues wrote: >> Thanks for your help... Ye

Re: Gtk+ progress bar color

2017-03-08 Thread Rúben Rodrigues
Works for me too. Thank you! On 08-03-2017 15:02, Stefan Salewski wrote: > On Wed, 2017-03-08 at 15:52 +0100, Stefan Salewski wrote: >> On Wed, 2017-03-08 at 14:18 +0000, Rúben Rodrigues wrote: >>> I asked to the Google before, but he don't give me nothing about >>

Re: Gtk+ progress bar color

2017-03-08 Thread Rúben Rodrigues
I asked to the Google before, but he don't give me nothing about this :-). PRELIGHT doesn't work too.. On 08-03-2017 13:53, Stefan Salewski wrote: > On Wed, 2017-03-08 at 13:30 +0000, Rúben Rodrigues wrote: >> Yes, doesn't work for me.. Because: >> >> gtk_widget

Re: Gtk+ progress bar color

2017-03-08 Thread Rúben Rodrigues
rds_ProgressBar")),GTK_STATE_NORMAL, ); Change text color. I want to change bar color.. THanks On 08-03-2017 12:49, Stefan Salewski wrote: > On Wed, 2017-03-08 at 12:29 +, Rúben Rodrigues wrote: >> Hi, >> >> Thanks. Yes i want to change in gtk 2.x and change it in my app >&g

Re: Gtk+ progress bar color

2017-03-08 Thread Rúben Rodrigues
Hi, Thanks. Yes i want to change in gtk 2.x and change it in my app only. There's no way in proprieties? On 07-03-2017 19:48, Stefan Salewski wrote: > On Tue, 2017-03-07 at 15:43 +0000, Rúben Rodrigues wrote: >>> Hi guys, >>> >>> How can i change prog

Gtk+ progress bar color

2017-03-07 Thread Rúben Rodrigues
> Hi guys, > > How can i change progress bar color? > > Thanks > ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Fwd: Resize and place a background image (Expose Event)

2017-03-02 Thread Rúben Rodrigues
Hi, Still crash after a while.. but needs more time.. What could be? Thanks Às 10:41 de 02/03/2017, Gabriele Greco escreveu: Now, application crash after start, but i think that is because i make the unref of pixbuf, and in next expose event, fails (i think)... GdkPixbuf-CRITICAL **:

Re: Fwd: Resize and place a background image (Expose Event)

2017-03-02 Thread Rúben Rodrigues
Thank you very much!! I'm not sure if i have to do this every time an expose event occurs.. I think that i just need on start of application.. But i test on start of application, i i don't have widget->allocation values, to make the resize.. Now, application crash after start, but i think that

Re: Resize and place a background image (Expose Event)

2017-03-02 Thread Rúben Rodrigues
ation.height, GDK_INTERP_BILINEAR); gdk_pixbuf_render_pixmap_and_mask (pixbuf, , NULL, 0); style = gtk_style_new (); style->bg_pixmap[0] = background; gtk_widget_set_style (GTK_WIDGET(widget), GTK_STYLE(style)); return TRUE; } Thanks Às 17:04 de 01/03/2017, Rúben Rodrigues

Resize and place a background image

2017-03-01 Thread Rúben Rodrigues
Hi, I'm trying to make something like this http://www.kksou.com/php-gtk2/sample-codes/place-a-background-image-in-GtkWindow-Part-6-align-bottom-right-GdkDrawable-draw_pixbuf.php but in C language. For now i just want to fill background image to it's cointainer (GtkLayout), because the

dark theme gtk+2?

2017-03-01 Thread Rúben Rodrigues
Hi guys, It's possible to make this g_object_set(gtk_settings_get_default(), "gtk-application-prefer-dark-theme", TRUE, NULL); with gtk+2.0? Thanks --- Este e-mail foi verificado em termos de vírus pelo software antivírus Avast. https://www.avast.com/antivirus

Re: Gtk-WARNING **: Could not find signal handler

2017-03-01 Thread Rúben Rodrigues
ldconfig to update your cache. > > --Tilo > > Am Montag, den 27.02.2017, 18:46 + schrieb Rúben Rodrigues: >> Please help me... >> >> I lost so many hours with this error.. This should work, because the >> same code works in other machine.. But in raspberry pi

Re: Gtk-WARNING **: Could not find signal handler

2017-03-01 Thread Rúben Rodrigues
ou have to compile and > install it yourself. > > If you have installed it and your linker still can't find it then you > probably need to run ldconfig to update your cache. > > --Tilo > > Am Montag, den 27.02.2017, 18:46 + schrieb Rúben Rodrigues: >> Please help me... >>

Re: Gtk-WARNING **: Could not find signal handler

2017-02-27 Thread Rúben Rodrigues
Please help me... I lost so many hours with this error.. This should work, because the same code works in other machine.. But in raspberry pi don't.. Thanks Às 15:19 de 27/02/2017, Rúben Rodrigues escreveu: > Hi, > > I have the same problem of this topic > https://mail.gnome.org/

Re: Error unknown type name ‘GtkSearchEntry’

2017-02-27 Thread Rúben Rodrigues
, Emmanuele Bassi escreveu: > On 27 February 2017 at 15:51, Rúben Rodrigues <ruben...@live.com.pt> wrote: >> Yes, gtk 2.. So, i can't use libwheather with gtk-2.0? > You will need a previous version of libgweather; the last release with > GTK+ 2.x support was the 2.30 release, w

Re: Error unknown type name ‘GtkSearchEntry’

2017-02-27 Thread Rúben Rodrigues
Yes, gtk 2.. So, i can't use libwheather with gtk-2.0? Thanks Às 13:09 de 27/02/2017, Colomban Wendling escreveu: > Le 27/02/2017 à 10:51, Rúben Rodrigues a écrit : >> Hi guys, >> >> Someone who knows this error? >> >> DescriptionResourcePathLoca

Re: Gtk-WARNING **: Could not find signal handler

2017-02-27 Thread Rúben Rodrigues
gtk_builder_add_callback_symbol(...) > > to add all symbols that are referenced in your Glade file. > > Also are you actually working on an ARM machine? Otherwise your > toolchain seems messed up. > > --Tilo > > Am Montag, den 27.02.2017, 15:19 + schrieb Rúb

Gtk-WARNING **: Could not find signal handler

2017-02-27 Thread Rúben Rodrigues
Hi, I have the same problem of this topic https://mail.gnome.org/archives/gtk-app-devel-list/2013-December/msg00037.html I see very similar problems, but didn't find any resolution. I get this error in when i'm debuugin gtk app : Gtk-WARNING **: Could not find signal handler I make this in

Error unknown type name ‘GtkSearchEntry’

2017-02-27 Thread Rúben Rodrigues
Hi guys, Someone who knows this error? DescriptionResourcePathLocationType unknown type name ‘GtkSearchEntry’ConsolaGraficaline 39, external location: /opt/x-tools/rootfs/rpi/usr/include/libgweather-3.0/libgweather/location-entry.h C/C++ Problem Thanks --- Este

Re: Weather API

2017-02-23 Thread Rúben Rodrigues
Hi, Thanks all. I'm new in gtk+ so it's dificult to understand how to use this library without documentation or examples..Anyone could help me? Again, thanks everyone. Às 11:08 de 23/02/2017, infirit escreveu: > Op 02/22/2017 om 07:44 PM schreef Norbert de Jonge: >>> gnome-weather [...] I

Re: Weather API

2017-02-22 Thread Rúben Rodrigues
/LibGWeather > > Essentially try using libgweather with geoclue and geocode-glib. > > You can also look at the gnome-weather source code to see how it is > all used. > > Good luck! > -Hashem > > On 02/22/2017 12:28 PM, Rúben Rodrigues wrote: >> Hi, >> >>

Weather API

2017-02-22 Thread Rúben Rodrigues
Hi, Someone could tell me which API i can use to display weather information in my application? It is possible to detect location based on internet connection? Thanks --- Este e-mail foi verificado em termos de vírus pelo software antivírus Avast. https://www.avast.com/antivirus