1

答えを探すのに長い時間を費やした後、誰かがこの問題を解決してくれることを願っています。Fedora 21 システムで gtkmm (バージョン 3.14.0) とグレード (バージョン 3.18.3) を使用して、多くの小さなイメージを含むGtk::TreeView/を作成しようとしています。Gtk::ListStoreストック アイコンをリストに簡単に配置できますが、Gdk::Pixbufオブジェクトの追加がうまくいかないようです。エラーまたは警告メッセージは表示されませんが、Gdk::Pixbuf画像は表示されません。

問題を示すために、最小限の作業例 (プログラムのコードと最後に含まれるグレード ファイル) を作成しました。Gtk::TreeViewこのプログラムを実行すると、2 つの「gtk-apply」アイコンが表示された小さなウィンドウが開きます。最初の列には として追加されたアイコンが表示されGdk::Pixbuf、2 番目の列にはストック アイコンが表示されます。ただし、プログラムを実行すると、最初の列は空のままです。コンパイルまたは実行時のエラーや警告はありません。

私の最終的なアプリケーションは、約 100 行と約 35 列のマトリックスを表示し、ほとんどが小さなアイコンであり、月のさまざまな日に行われたアクティビティの概要をすばやく確認できます。これらのアイコンはいずれもストック アイコンにはなりません。

追加情報: デバッガーを使用してプログラムを実行した後、Gtk::ListStoreの最初の列が 型のデータを必要としていることがわかりましたgtkmm__GdkPixbufpbラインの のタイプrow[cols.m_pb] = pbは ですGdkPixbuf。型GdkPixbufを自動変換できないためgtkmm__GdkPixbuf、値が 0 (NULL) に設定されます。明らかに、これで問題が解決するわけではありませんが、問題の解決に役立つ可能性があります。

2015 年のご多幸をお祈り申し上げます、Wim

これはファイル mwe.glade です。

<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.18.3 -->
<interface>
  <requires lib="gtk+" version="3.12"/>
  <object class="GtkAccelGroup" id="accelgroup1"/>
  <object class="GtkApplicationWindow" id="mainwindow">
    <property name="can_focus">False</property>
    <property name="show_menubar">False</property>
    <child>
      <object class="GtkGrid" id="mainbox">
        <property name="visible">True</property>
        <property name="can_focus">False</property>
        <property name="orientation">vertical</property>
        <child>
          <object class="GtkTreeView" id="treattree">
            <property name="visible">True</property>
            <property name="can_focus">True</property>
            <property name="vexpand">True</property>
            <property name="hscroll_policy">natural</property>
            <property name="model">treatstore</property>
            <property name="rules_hint">True</property>
            <property name="search_column">0</property>
            <property name="fixed_height_mode">True</property>
            <child internal-child="selection">
              <object class="GtkTreeSelection" id="sel1"/>
            </child>
            <child>
              <object class="GtkTreeViewColumn" id="col1">
                <property name="sizing">fixed</property>
                <property name="fixed_width">32</property>
                <property name="title">1</property>
                <child>
                  <object class="GtkCellRendererPixbuf" id="cell1">
                    <property name="width">16</property>
                    <property name="height">16</property>
                  </object>
                  <attributes>
                    <attribute name="pixbuf">0</attribute>
                  </attributes>
                </child>
              </object>
            </child>
            <child>
              <object class="GtkTreeViewColumn" id="col2">
                <property name="sizing">fixed</property>
                <property name="fixed_width">32</property>
                <property name="title">2</property>
                <child>
                  <object class="GtkCellRendererPixbuf" id="cell2"/>
                  <attributes>
                    <attribute name="stock-id">1</attribute>
                  </attributes>
                </child>
              </object>
            </child>
          </object>
          <packing>
            <property name="left_attach">0</property>
            <property name="top_attach">0</property>
          </packing>
        </child>
      </object>
    </child>
  </object>
  <object class="GtkListStore" id="treatstore">
    <columns>
      <!-- column-name col1 -->
      <column type="GdkPixbuf"/>
      <!-- column-name col2 -->
      <column type="gchararray"/>
    </columns>
  </object>
</interface>

ファイル mwe.cpp:

#include <gtkmm.h>

namespace ws
{
class App : public Gtk::Application
{
protected:
    App() : Gtk::Application("nl.mwe.mwe"), m_mainwindow(0)
    {
    Glib::set_application_name("MWE");
    }

public:
    static Glib::RefPtr<App> create(int &argc, char **&argv)
    {
    return Glib::RefPtr<App>(new App());
    }
    void init(Glib::RefPtr<Gtk::Builder> builder);
    int run()
    {
    return Gtk::Application::run(*m_mainwindow);
    }
private:
    Gtk::ApplicationWindow *m_mainwindow;
};

// Definition of the column references
class ModelColumns : public Gtk::TreeModelColumnRecord
{
public:
    ModelColumns()
    {
    add(m_pb);
    add(m_stock);
    }
    Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > m_pb;
    Gtk::TreeModelColumn<Glib::ustring> m_stock;
};
static ModelColumns col;

} // End namespace ws

/**
 * \brief   Initialize the app
 * \param[in]       builder The builder object
 *
 * Here is where the list store is populated with the Gdk::Pixbuf
 */
void ws::App::init(Glib::RefPtr<Gtk::Builder> builder)
{
    builder->get_widget("mainwindow", m_mainwindow);
    m_mainwindow->show();

    Glib::RefPtr<Gtk::ListStore> store =
    Glib::RefPtr<Gtk::ListStore>::cast_static(
        builder->get_object("treatstore"));

    Gtk::TreeModel::Row row = *store->append();

    // The line below loads the stock icon as a pixbuf.
    Glib::RefPtr<Gdk::Pixbuf> pb =
    Gtk::IconTheme::get_default()->load_icon("gtk-apply", 16);
    row[col.m_pb] = pb;

    row[col.m_stock] = "gtk-apply";
}

int main (int argc, char *argv[])
{
    Glib::RefPtr<ws::App> myapp = ws::App::create(argc, argv);
    Glib::RefPtr<Gtk::Builder> builder = Gtk::Builder::create();
    builder->add_from_file("mwe.glade");
    myapp->init(builder);
    return myapp->run();
}
4

1 に答える 1

0

質問の補足情報セクションに示されているように、タイプに問題があることを発見した後、 手動でストアを作成することにしました。の定義がGtkListStoreグレード ファイルから削除されました。メソッドは次のws::App::init() ように変更されました。

void ws::App::init(Glib::RefPtr<Gtk::Builder> builder)
{
    builder->get_widget("mainwindow", m_mainwindow);

    Gtk::TreeView *treeview = 0;
    builder->get_widget("treattree", treeview);

    Glib::RefPtr<Gtk::ListStore> store =
    Gtk::ListStore::create(col);
    treeview->set_model(store);

    Gtk::TreeModel::Row row = *store->append();

    // The line below loads the stock icon as a pixbuf.
    Glib::RefPtr<Gdk::Pixbuf> pb =
        Gtk::IconTheme::get_default()->load_icon("gtk-apply", 16);
    row[col.m_pb] = pb;

    row[col.m_stock] = "gtk-apply";
    m_mainwindow->show();
}

これは期待したほど柔軟ではありませんが、問題は解決します。

于 2015-01-03T18:51:39.523 に答える