Re: Re: Promotion

2010-04-07 Thread George Kibardin

It works now! Thank you!

07.04.10, 15:07, "Niels Breet" :

> On Sun, April 4, 2010 20:42, George Kibardin wrote:
>  > Hi everybody,
>  >
>  >
>  > It seems that I missed something. Suddenly I cannot promote the latest
>  > version of my app from diablo extras-devel to diablo extras. I've read
>  > this http://wiki.maemo.org/Uploading_to_Extras, tried this
>  > https://garage.maemo.org/promoter/diablo and still no luck. I see my app
>  > in extras-devel, but there is nothing like "promote" button.
>  
>  
>  The promote link is found on the armel version page of your application:
>  
> http://maemo.org/packages/package_instance/view/diablo_extras-devel_free_armel/feedcircuit/0.7.6-2/
>  
>  The link doesn't show because you are not using one of the sections listed
>  in http://wiki.maemo.org/Package_Categories
>  >
>  > P.S. I see that for Fremantle promotion process is more complex, but I
>  > still cannot get the idea - what to do to initiate promotion process?
>  
>  Same thing. Go to the armel version of the package in fremantle
>  extras-devel and click on promote.
>  
>  >
>  > Best,
>  > George
>  
>  --
>  Niels Breet
>  maemo.org webmaster
>  
>  
>  
>  
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Promotion

2010-04-04 Thread George Kibardin
Hi everybody,

It seems that I missed something. Suddenly I cannot promote the latest version 
of my app from diablo extras-devel to diablo extras. I've read this 
http://wiki.maemo.org/Uploading_to_Extras, tried this 
https://garage.maemo.org/promoter/diablo and still no luck. I see my app in 
extras-devel, but there is nothing like "promote" button.

P.S. I see that for Fremantle promotion process is more complex, but I still 
cannot get the idea - what to do to initiate promotion process?

Best,
George
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Re: GtkTreeView behaviour

2010-01-12 Thread George Kibardin
Thank you Alberto for your code samble. I've found the problem. 
gtk_container_add() shoud be used instead of 
hildon_pannable_area_add_with_viewportl().

12.01.10, 12:23, "Alberto Garcia" :

> On Mon, Jan 11, 2010 at 11:47:48PM +0300, George Kibardin wrote:
>  
>  > In my case for some reason in normal mode I need two taps to get
>  > row-activated signal: one tap to select appropriate item and another
>  > one to activate it. In edit mode with multiple selection enabled
>  > I need to use Ctrl to select multiple items which also seems
>  > wrong. What I'm doing wrong?
>  
>  There must be something wrong in your code... I'm attaching a simple
>  example of a treeview in normal mode, tell me if it works fine for
>  you.
>  
>  Berto
>  
>  
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: Re: GtkTreeView behaviour

2010-01-12 Thread George Kibardin
Here is minimized code sample. Doesn't seem very different.


12.01.10, 12:23, "Alberto Garcia" :

> On Mon, Jan 11, 2010 at 11:47:48PM +0300, George Kibardin wrote:
>  
>  > In my case for some reason in normal mode I need two taps to get
>  > row-activated signal: one tap to select appropriate item and another
>  > one to activate it. In edit mode with multiple selection enabled
>  > I need to use Ctrl to select multiple items which also seems
>  > wrong. What I'm doing wrong?
>  
>  There must be something wrong in your code... I'm attaching a simple
>  example of a treeview in normal mode, tell me if it works fine for
>  you.
>  
>  Berto
>  
>  #include 

void row_activated(GtkTreeView *tree_view, GtkTreePath *path,
GtkTreeViewColumn *column, gpointer user_data)
{
printf("row activated\n");
}

int main(int argc, char **argv)
{
HildonProgram *program;
GtkWidget *window;
GtkWidget *pannable_area;
GtkWidget *tree_view;
GtkListStore *list_store;

hildon_gtk_init (&argc, &argv);

program = hildon_program_get_instance ();

window = hildon_window_new ();

hildon_program_add_window (program, HILDON_WINDOW (window));

g_signal_connect (G_OBJECT (window), "delete_event",
G_CALLBACK (gtk_main_quit), NULL);

pannable_area = hildon_pannable_area_new();

gtk_container_add (GTK_CONTAINER (window), pannable_area);

list_store = gtk_list_store_new(1, G_TYPE_STRING);

GtkTreeIter iter;
gtk_list_store_append(list_store, &iter);
gtk_list_store_set(list_store, &iter, 0, "Item 1", -1);
gtk_list_store_append(list_store, &iter);
gtk_list_store_set(list_store, &iter, 0, "Item 2", -1);
gtk_list_store_append(list_store, &iter);
gtk_list_store_set(list_store, &iter, 0, "Item 3", -1);
gtk_list_store_append(list_store, &iter);
gtk_list_store_set(list_store, &iter, 0, "Item 4", -1);

tree_view = hildon_gtk_tree_view_new_with_model(HILDON_UI_MODE_NORMAL, (GtkTreeModel *)list_store);
hildon_pannable_area_add_with_viewport((HildonPannableArea *)pannable_area, tree_view);

GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
GtkTreeViewColumn *column = gtk_tree_view_column_new_with_attributes("Text", renderer, "text", 0, NULL);
gtk_tree_view_append_column((GtkTreeView *)tree_view, column);

g_signal_connect(G_OBJECT(tree_view), "row-activated", G_CALLBACK(row_activated), NULL);

gtk_widget_show_all (GTK_WIDGET (window));

gtk_main ();

return 0;
}


___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


GtkTreeView behaviour

2010-01-11 Thread George Kibardin
Hi everybody!

I'm porting my application (FeedCircuit) to N900 and faced strange problem. I 
have no real device so I'm using scratchbox. According to guidelines (like this 
http://sw.nokia.com/id/a3187f95-ad88-4233-b0ef-a182da3ec1c7/Hildon_2_2_Widget_UI_Specification_v1_0_en.pdf)
 when GtkTreeView is put into PannableArea it becomes finger friendly. When it 
is created with hildon_gtk_tree_view_new(HILDON_UI_MODE_NORMAL) it should emit 
row-activated signal after a single tap on it. In edit mode 
hildon_gtk_tree_view_new(HILDON_UI_MODE_EDIT) tap must select/deselect one or 
multiple records. In my case for some reason in normal mode I need two taps to 
get row-activated signal: one tap to select appropriate item and another one to 
activate it. In edit mode with multiple selection enabled I need to use Ctrl to 
select multiple items which also seems wrong. What I'm doing wrong?


Best,
George
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers