bluesabre | ochosi: going to update the copyrights for libreoffice-style-elementary... then it should be just up to you tagging a release for it | 01:53 |
---|---|---|
bluesabre | ochosi, knome: so, here's my proposed license for the libreoffice-style-elementary theme http://pad.ubuntu.com/lo-style-elementary-copyright | 02:37 |
bluesabre | s/license/copyright-file | 02:38 |
knome | bluesabre, you can use pasi@shimmerproject.org for my email | 08:32 |
knome | or i can do that myself :) | 08:33 |
knome | removed the dot after the l-s-e GPL note for consistency | 08:35 |
bluesabre | knome: thanks | 11:55 |
ali1234 | okay why does my numlock key keep turning off? | 12:55 |
bluesabre | probably a greeter issue or something | 13:22 |
bluesabre | can use this as a workaround it seems https://ubuntu-mate.community/t/numlock-turns-on-ubuntu-mate/1215 | 13:23 |
ali1234 | i have not logged out since i installed | 13:35 |
ali1234 | numlock turns off randomly every day | 13:35 |
bluesabre | oh | 13:35 |
bluesabre | thats bizarre | 13:35 |
slickymaster | Unit193, downloaded. Next monday will test it in VB | 16:57 |
bluesabre | Unit193: don't suppose you know if anything is missing from the next x-d-s upload? | 17:39 |
bluesabre | :D | 17:39 |
krytarik | bluesabre: Since you are asking, the default font for both the terminal and Mousepad should be Droid Sans Mono too, rather than DejaVu Sans Mono. :P | 18:06 |
bluesabre | krytarik: actually, we changed that from Droid Sans Mono at one point in the past because it was less readable, iirc | 18:30 |
bluesabre | I'd have to check around the commits for that :) | 18:30 |
Unit193 | Not offhand. | 20:40 |
knome | bluesabre, you're correct, dejavu sans mono isn't a mistake | 20:45 |
ochosi | bluesabre: i'm taking a look at the copyright thingy now | 21:28 |
ochosi | looks good to me | 21:29 |
ochosi | i guess that one's a go | 21:29 |
ochosi | bluesabre: pushed the new copyrights file and dropped the other ones | 21:53 |
ochosi | thanks! | 21:53 |
ochosi | bluesabre: and released: https://github.com/shimmerproject/libreoffice-style-elementary/releases/tag/v0.1 | 22:10 |
ochosi | when i have the time, i'll blog about it (or anyone else can, if they want to, currently it's too hot here for doing much work) | 22:10 |
ochosi | bluesabre: also lemme know when you upload all that artwork stuff so i can check it off the blueprint | 22:11 |
ochosi | enough for one evening, night everyone | 22:30 |
sorinello | Hello. Does anyone here knows a bit of GTK ? | 22:33 |
knome | sorinello, while this isn't the GTK channel, why not ask the real question and find out? | 22:38 |
knome | night ochosi | 22:38 |
sorinello | Hello :) I am playing/learning a bit GTK. The idea is that I have a small window with a gtk_entry, on which I have set a signal_connect. But I don't know how to pass data to it. | 22:39 |
sorinello | I am using this: g_signal_connect (text_entry, "activate", G_CALLBACK (print_event), data); | 22:39 |
knome | ok, you'd be much better off in a real gtk channel | 22:39 |
sorinello | I've already asked | 22:40 |
bluesabre | hey sorinello | 22:43 |
sorinello | hello bluesabre | 22:44 |
bluesabre | that looks right | 22:44 |
sorinello | bluesabre, yes, the problem is that I want to pass the contents of the gtk_entry to the callback function | 22:44 |
sorinello | and I don't know how to get the contents :) | 22:45 |
sorinello | I tried: g_signal_connect (text_entry, "activate", G_CALLBACK (print_event), gtk_entry_get_text(text_entry)); but I get a compilation error | 22:45 |
bluesabre | you get the data for the widget in the callback function | 22:45 |
bluesabre | gtk_entry_get_text(GtkEntry *entry) | 22:46 |
sorinello | so from the activate function, how do I declare the data variable ? | 22:46 |
bluesabre | the callback follows this format | 22:46 |
bluesabre | void | 22:46 |
bluesabre | user_function (GtkEntry *entry, | 22:46 |
bluesabre | gpointer user_data) | 22:46 |
bluesabre | so in that function, just use gtk_entry_get_text on the entry that is connected | 22:47 |
sorinello | ok, but g_signal_connect (text_entry, "activate", G_CALLBACK (print_event), data); the "data" variable, how do I declare it, what type ? | 22:48 |
bluesabre | for data, just use NULL | 22:48 |
bluesabre | since you're not passing anything extra in | 22:48 |
sorinello | okay | 22:48 |
sorinello | my user function has this signature | 22:49 |
sorinello | void | 22:49 |
sorinello | print_event(GtkWidget * widget, gpointer data) | 22:49 |
sorinello | I guess I'll have to replace GtkWidget with GtkEntry | 22:49 |
bluesabre | you can do that, or cast the widget to GtkEntry | 22:49 |
bluesabre | there might be a newer one for gtk3, but this should all still be relevant https://developer.gnome.org/gtk-tutorial/stable/ | 22:50 |
bluesabre | I've gotta run out for dinner, but you should be able to get a lot of answers from that | 22:51 |
sorinello | bluesabre, It worked. Thanks a lot ! | 22:51 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!