美文网首页Linux学习之路Linux
[GTK] GNOME3 风格的 “前进/后退” 或 “播放/暂

[GTK] GNOME3 风格的 “前进/后退” 或 “播放/暂

作者: Leavers | 来源:发表于2016-09-17 19:45 被阅读0次

    在基于 GTK 3.0 开发的一系列 GNOME3 程序中,我们经常见到 “连接” 为一个整体的 “前进/后退” 按键组:

    Nautilus Epiphany

    很多音乐播放器的 “播放/上一首/下一首” 按键组也采用了相同的设计:

    Lollypop

    这已然成为了 GNOME3 桌面风格的一部分,通过这种方式,我们可以将逻辑上存在关联的按钮化为一个整体,便于用户理解。

    实现这种效果并不困难,在此我们介绍两种方法。第一种为编辑源代码:首先我们把 GtkButton 控件依次放入 GtkBox 容器中,然后在 GtkBoxGtkStyleContext 类中添加名为 "linked" 的属性。GtkStyleContextGTK 3.0 中一种用于存储控件样式风格信息的类,每个控件都包含了它,并可通过 gtk_widget_get_style_context() 获取。以 “前进/后退” 按键组为例,它的示例代码片段如下:

    GtkWidget *previous_button = gtk_button_new_from_icon_name ("go-previous-symbolic",
                                                                GTK_ICON_SIZE_BUTTON);
    GtkWidget *next_button = gtk_button_new_from_icon_name ("go-next-symbolic",
                                                            GTK_ICON_SIZE_BUTTON);
    
    GtkWidget *box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
    gtk_box_pack_start (GTK_BOX (box), previous_button, FALSE, FALSE, 0);
    gtk_box_pack_start (GTK_BOX (box), next_button, FALSE, FALSE, 0);
    
    // 将 box 中所有子控件设置为 “linked” 形式
    gtk_style_context_add_class (gtk_widget_get_style_context (box), "linked");
    

    第二种方法为编辑 ui 文件(亦或 xml 文件)。ui 文件的示例代码片段如下:

    <object class="GtkBox" id="box">
      <property name="visible">True</property>
      <property name="valign">center</property>
      <property name="can_focus">False</property>
      <style>
        <class name="linked"/>
      </style>
      <child>
        <object class="GtkButton" id="previous_button">
          <property name="visible">True</property>
          <property name="valign">center</property>
          <property name="can_focus">False</property>
          <child>
            <object class="GtkImage" id="previous_button_image">
              <property name="visible">True</property>
              <property name="icon_size">1</property>
              <property name="icon_name">go-previous-symbolic</property>
            </object>
          </child>
        </object>
      </child>
      <child>
        <object class="GtkButton" id="next_button">
          <property name="visible">True</property>
          <property name="valign">center</property>
          <property name="can_focus">False</property>
          <child>
            <object class="GtkImage" id="next_button_image">
              <property name="visible">True</property>
              <property name="icon_size">1</property>
              <property name="icon_name">go-next-symbolic</property>
            </object>
          </child>
        </object>
      </child>
    </object>
    

    完成 ui 文件编辑后,在源代码文件中通过 GtkBuilder 调用即可:

    GtkBuilder *builder = gtk_builder_new_from_file ("path/to/ui/file");
    GtkWidget *previous_button = GTK_WIDGET (gtk_builder_get_object (builder, "previous_button"));
    GtkWidget *next_button = GTK_WIDGET (gtk_builder_get_object (builder, "next_button"));
    

    我们可以通过以上两种方法将 GtkHeaderBarGtkActionBar 等容器中的按钮转变为类似的风格,这样程序界面也就更加 “GNOME” 了。

    相关文章

      网友评论

        本文标题:[GTK] GNOME3 风格的 “前进/后退” 或 “播放/暂

        本文链接:https://www.haomeiwen.com/subject/wslwettx.html