This is the code that I noted in
http://xlog.sourcearchive.com/documentation/2.0.5-2/gui__mainwindow_8c_source.html
and which I think is the code that should create the Remarks text box
using calls to the GTK function library.

remarksvbox = gtk_vbox_new (FALSE, 0);
      gtk_box_pack_start (GTK_BOX (qsofieldsvbox), remarksvbox, FALSE, FALSE, 
0);
      rembox1 = gtk_hbox_new (FALSE, 0);
      gtk_box_pack_start (GTK_BOX (remarksvbox), rembox1, FALSE, FALSE, 0);
      remarkslabel = gtk_label_new_with_mnemonic (_("Remar_ks"));
      gtk_box_pack_start (GTK_BOX (rembox1), remarkslabel, TRUE, TRUE, 0);
      rembox2 = gtk_hbox_new (FALSE, 0);
      gtk_box_pack_start (GTK_BOX (remarksvbox), rembox2, FALSE, FALSE, 0);
      remscr = gtk_scrolled_window_new (NULL, NULL);
      gtk_container_add (GTK_CONTAINER (rembox2), remscr);
      gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (remscr),
            GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
      gtk_scrolled_window_set_shadow_type
            (GTK_SCROLLED_WINDOW (remscr), GTK_SHADOW_ETCHED_IN);
      remtv = gtk_text_view_new ();
      gtk_label_set_mnemonic_widget (GTK_LABEL(remarkslabel), remtv);
      gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW(remtv), GTK_WRAP_WORD);
      gtk_container_add (GTK_CONTAINER (remscr), remtv);

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1014919

Title:
  Remarks field not displayed in xlog QSO entry form in Ubuntu 12.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xlog/+bug/1014919/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to