| *** lcuk has joined #maemo-devel | 00:05 | |
| *** Venemo has joined #maemo-devel | 00:07 | |
| *** Venemo has quit IRC | 00:08 | |
| *** lizardo has quit IRC | 00:24 | |
| *** kW_ has quit IRC | 00:33 | |
| *** silbo_____ has quit IRC | 00:47 | |
| *** lizardo has joined #maemo-devel | 01:03 | |
| *** _0x471 has joined #maemo-devel | 01:17 | |
| *** Nathrai|afk has quit IRC | 01:25 | |
| *** Nathrai|afk has joined #maemo-devel | 01:38 | |
| *** lizardo has quit IRC | 01:41 | |
| *** swc|666 has joined #maemo-devel | 01:43 | |
| *** SpeedEvil has quit IRC | 02:14 | |
| *** kamui__ has joined #maemo-devel | 02:16 | |
| *** shinkamui has quit IRC | 02:20 | |
| *** Agrou has quit IRC | 02:24 | |
| *** SpeedEvil has joined #maemo-devel | 03:00 | |
| *** _0x471 has quit IRC | 03:11 | |
| *** _Lucretia_ has quit IRC | 03:20 | |
| *** ptl has quit IRC | 03:20 | |
| *** w00t_ has quit IRC | 03:20 | |
| *** dannym has quit IRC | 03:22 | |
| *** w00t_ has joined #maemo-devel | 03:25 | |
| *** w00t_ is now known as Guest83309 | 03:25 | |
| *** ptl has joined #maemo-devel | 03:35 | |
| *** ptl has joined #maemo-devel | 03:35 | |
| *** _Lucretia_ has joined #maemo-devel | 03:36 | |
| *** Guest83309 is now known as w00t_ | 04:35 | |
| *** w00t_ has joined #maemo-devel | 04:35 | |
| *** SpeedEvil has quit IRC | 05:55 | |
| *** SpeedEvil has joined #maemo-devel | 05:56 | |
| *** DocScrutinizer has quit IRC | 07:33 | |
| *** DocScrutinizer has joined #maemo-devel | 07:33 | |
| *** SpeedEvil has quit IRC | 09:34 | |
| *** SpeedEvil has joined #maemo-devel | 09:35 | |
| *** _0x47 has quit IRC | 09:35 | |
| *** _0x47 has joined #maemo-devel | 09:36 | |
| *** BluesLee has joined #maemo-devel | 09:40 | |
| *** BluesLee has quit IRC | 09:41 | |
| *** _0x47 has quit IRC | 10:21 | |
| *** _0x47 has joined #maemo-devel | 10:27 | |
| *** pillar has quit IRC | 10:32 | |
| *** silbo___ has joined #maemo-devel | 10:33 | |
| *** _0x471 has joined #maemo-devel | 10:43 | |
| *** _0x47 has quit IRC | 10:51 | |
| *** _0x47 has joined #maemo-devel | 10:54 | |
| *** _0x47 has quit IRC | 11:11 | |
| *** _0x47 has joined #maemo-devel | 11:11 | |
| *** _0x47 has quit IRC | 11:12 | |
| *** _0x47 has joined #maemo-devel | 11:13 | |
| *** silbo___ has quit IRC | 11:40 | |
| *** BluesLee has joined #maemo-devel | 11:43 | |
| *** BluesLee has quit IRC | 12:36 | |
| *** Venemo has joined #maemo-devel | 12:43 | |
| *** malcolmci has joined #maemo-devel | 13:27 | |
| *** BluesLee has joined #maemo-devel | 13:59 | |
| *** BluesLee has quit IRC | 14:04 | |
| *** shinkamui has joined #maemo-devel | 14:16 | |
| *** kamui__ has quit IRC | 14:20 | |
| *** kW_ has joined #maemo-devel | 14:31 | |
| *** VDVsx has joined #maemo-devel | 15:35 | |
| *** kulve has quit IRC | 15:43 | |
| *** swc|666 has quit IRC | 15:51 | |
| *** kulve has joined #maemo-devel | 15:56 | |
| *** VDVsx has quit IRC | 15:58 | |
| *** kW_ has quit IRC | 16:14 | |
| *** kW has joined #maemo-devel | 16:16 | |
| *** kW_ has joined #maemo-devel | 16:19 | |
| *** kW has quit IRC | 16:23 | |
| Venemo | Hi guys | 17:19 |
|---|---|---|
| Venemo | I'm trying to do something with Gtk | 17:19 |
| Venemo | I would like to add a button to a GtkDialog's action area which doesn't trigger the dialog's "response" event | 17:20 |
| Venemo | if I use gtk_dialog_add_button(), it does | 17:21 |
| Venemo | but if I create a button with gtk_button_new_with_label(), it creates a totally differently styled button | 17:21 |
| *** malcolmci has quit IRC | 17:58 | |
| *** silbo_____ has joined #maemo-devel | 18:26 | |
| Weiss | Venemo: maybe gtk_button_new_from_stock() is what you want | 18:41 |
| Weiss | ? | 18:41 |
| Venemo | Weiss: no, actually, I discovered what was the problem | 18:43 |
| Venemo | Weiss: I had to look at Hildon's code though | 18:43 |
| Venemo | Weiss: it seems that if I call hildon_gtk_widget_set_theme_size on the button, its appearance will change to the style used in the dialogs | 18:44 |
| Weiss | 3ah, ok | 18:44 |
| Venemo | Weiss: however, there is another issue | 18:44 |
| Venemo | Weiss: it seems that gtk_box_pack_start puts the packed widget to the end instead of the start | 18:45 |
| *** Lullen has quit IRC | 18:47 | |
| *** kW_ has quit IRC | 18:50 | |
| Weiss | gtk_box_pack_start() means to "start packing from the left/top of the hbox/vbox (respectively)".. maybe it makes more sense if you think of it that way | 18:51 |
| Venemo | Weiss: so it is irrelevant whether I call pack_start or pack_end? | 18:53 |
| Weiss | I guess you want [new button] [auto-generated button] [another auto-generated button]? | 18:56 |
| Weiss | if so, gtk_box_pack_end() is what you want | 18:58 |
| Venemo | Weiss: sure, but I want it to appear on the top, and not on the bottm | 18:59 |
| Venemo | bottom* | 19:00 |
| Weiss | ah... I'm answering from "general GTK perspective" rather than Maemo.. so the end appearance will be different | 19:01 |
| Weiss | the calls should be the same, though | 19:01 |
| Venemo | Weiss: okay, thanks :) | 19:17 |
| *** Venemo has quit IRC | 19:32 | |
| *** lizardo has joined #maemo-devel | 20:33 | |
| *** _0x472 has joined #maemo-devel | 20:37 | |
| *** _0x471 has quit IRC | 20:39 | |
| *** _0x471 has joined #maemo-devel | 20:56 | |
| *** _0x473 has joined #maemo-devel | 20:58 | |
| *** _0x472 has quit IRC | 20:59 | |
| *** _0x472 has joined #maemo-devel | 21:01 | |
| *** _0x471 has quit IRC | 21:01 | |
| *** _0x473 has quit IRC | 21:02 | |
| *** _0x472 has quit IRC | 21:08 | |
| *** _0x471 has joined #maemo-devel | 21:14 | |
| *** _0x471 has quit IRC | 21:18 | |
| *** _0x471 has joined #maemo-devel | 21:18 | |
| *** _0x471 has quit IRC | 21:23 | |
| *** jacekowski has joined #maemo-devel | 21:24 | |
| jacekowski | hi | 21:24 |
| *** silbo_____ has quit IRC | 21:24 | |
| jacekowski | how do i access microphone on n900? | 21:25 |
| jacekowski | just like on normal linux ( via alsa ) or talk somehow to PA? | 21:25 |
| *** _0x471 has joined #maemo-devel | 21:29 | |
| *** silbo___ has joined #maemo-devel | 21:36 | |
| SpeedEvil | yes | 21:41 |
| SpeedEvil | pa | 21:41 |
| SpeedEvil | there are a couple of apps in the repo that do it | 21:41 |
| SpeedEvil | http://maemo.org/packages/view/recorder/ | 21:41 |
| *** _0x472 has joined #maemo-devel | 21:43 | |
| *** _0x471 has quit IRC | 21:45 | |
| *** T7g has quit IRC | 21:55 | |
| *** _0x471 has joined #maemo-devel | 21:57 | |
| *** _0x472 has quit IRC | 21:59 | |
| *** T7g has joined #maemo-devel | 22:01 | |
| *** _0x471 has quit IRC | 22:23 | |
| *** Ian-- has quit IRC | 22:52 | |
| *** swc|666 has joined #maemo-devel | 22:52 | |
| *** Ian-- has joined #maemo-devel | 22:56 | |
| *** boogeyman has joined #maemo-devel | 23:30 | |
| *** boogeyman has quit IRC | 23:30 | |
Generated by irclog2html.py 4.0.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!