Gtk 进度条高度
Posted
技术标签:
【中文标题】Gtk 进度条高度【英文标题】:Gtk Progress bar height 【发布时间】:2017-05-31 16:57:07 【问题描述】:我正在用 C++ 开发一个 Gtk 应用程序。 (GTK 3.0)。我的问题是我不能改变 ProgressBar 的高度! (https://developer.gnome.org/gtk3/stable/GtkProgressBar.html)
下面的图片将显示我需要什么。一般来说,我希望有可能在我的代码中设置进度条的高度。progress bar height
我正在使用以下命令来编译我的示例:
gcc progress.cpp `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0
这是我的代码示例:
#include <gtk/gtk.h>
static gboolean
fill (gpointer user_data)
GtkWidget *progress_bar = user_data;
/*Get the current progress*/
gdouble fraction;
fraction = gtk_progress_bar_get_fraction (GTK_PROGRESS_BAR (progress_bar));
/*Increase the bar by 10% each time this function is called*/
fraction += 0.1;
/*Fill in the bar with the new fraction*/
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), fraction);
/*Ensures that the fraction stays below 1.0*/
if (fraction < 1.0)
return TRUE;
return FALSE;
static void
activate (GtkApplication *app,
gpointer user_data)
GtkWidget *window;
GtkWidget *progress_bar;
gdouble fraction = 0.0;
/*Create a window with a title, and a default size*/
window = gtk_application_window_new (app);
gtk_window_set_title (GTK_WINDOW (window), "ProgressBar Example");
gtk_window_set_default_size (GTK_WINDOW (window), 220, 20);
/*Create a progressbar and add it to the window*/
progress_bar = gtk_progress_bar_new ();
gtk_container_add (GTK_CONTAINER (window), progress_bar);
/*Fill in the given fraction of the bar. Has to be between 0.0-1.0 inclusive*/
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (progress_bar), fraction);
/*Use the created fill function every 500 milliseconds*/
g_timeout_add (500, fill, GTK_PROGRESS_BAR (progress_bar));
gtk_widget_show_all (window);
int
main (int argc, char **argv)
GtkApplication *app;
int status;
app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
return status;
【问题讨论】:
您需要为此使用 CSS。有关详细信息,请参阅GtkProgressBardocumentation。请注意,如果您需要在 GTK+ 3.18 或更早版本上运行,您还需要提供具有稍微不同的选择器的替代品;这些没有很好的记录。我不知道我脑子里有什么魔法咒语,对不起。 另请注意,每个主题默认使用不同的高度,因此 IDK 最好的“通用”选项是什么(例如,使其与按钮一样高)。 您好,非常感谢。我通过添加 GtkProgressBar -GtkProgressBar-min-horizontal-bar-height: 30px; 修改了我的 style.css这让我很开心:) 【参考方案1】:对于 GTK 3.20 和更高版本,在定义 CSS 时,似乎必须使用 progress
和 trough
类,而不是使用 progressbar
类。这对我有用:
progress, trough
min-height: 30px;
【讨论】:
谢谢!我用em
而不是px
,我觉得这样更好。例如:progress, trough min-height: 0.5em;
以上是关于Gtk 进度条高度的主要内容,如果未能解决你的问题,请参考以下文章