Home
last modified time | relevance | path

Searched refs:tooltip_format (Results 1 – 17 of 17) sorted by relevance

/dports/x11/lxpanel/lxpanel-0.9.3/plugins/
H A Ddclock.c57 char * tooltip_format; /* Format string for tooltip value */ member
191 if (dc->tooltip_format != NULL) in dclock_update_display()
192 strftime(tooltip_value, sizeof(tooltip_value), dc->tooltip_format, current_time); in dclock_update_display()
304 dc->tooltip_format = g_strdup(str); in dclock_constructor()
339 if (dc->tooltip_format == NULL) in dclock_constructor()
340 dc->tooltip_format = g_strdup(_(DEFAULT_TIP_FORMAT)); in dclock_constructor()
363 g_free(dc->tooltip_format); in dclock_destructor()
419 config_group_set_string(dc->settings, "TooltipFmt", dc->tooltip_format); in dclock_apply_configuration()
434 _("Tooltip Format"), &dc->tooltip_format, CONF_TYPE_STR, in dclock_configure()
/dports/x11/waybar/Waybar-0.9.12/src/modules/
H A Ddisk.cpp74 std::string tooltip_format = "{used} used out of {total} on {path} ({percentage_used}%)"; in update() local
76 tooltip_format = config_["tooltip-format"].asString(); in update()
78 label_.set_tooltip_text(fmt::format(tooltip_format in update()
H A Dtemperature.cpp44 std::string tooltip_format = "{temperatureC}°C"; in update() local
46 tooltip_format = config_["tooltip-format"].asString(); in update()
48 label_.set_tooltip_text(fmt::format(tooltip_format, in update()
H A Dbattery.cpp300 std::string tooltip_format = "{timeTo}"; in update() local
308 tooltip_format = config_["tooltip-format-" + status + "-" + state].asString(); in update()
310 tooltip_format = config_["tooltip-format-" + status].asString(); in update()
312 tooltip_format = config_["tooltip-format-" + state].asString(); in update()
314 tooltip_format = config_["tooltip-format"].asString(); in update()
316 label_.set_tooltip_text(fmt::format(tooltip_format, in update()
H A Dbluetooth.cpp18 auto tooltip_format = config_["tooltip-format"].asString(); in update() local
19 auto tooltip_text = fmt::format(tooltip_format, status, fmt::arg("status", status)); in update()
H A Dsimpleclock.cpp24 auto tooltip_format = config_["tooltip-format"].asString(); in update() local
25 auto tooltip_text = fmt::format(tooltip_format, localtime); in update()
H A Dpulseaudio.cpp241 std::string tooltip_format; in update() local
290 if (tooltip_format.empty() && config_["tooltip-format"].isString()) { in update()
291 tooltip_format = config_["tooltip-format"].asString(); in update()
293 if (!tooltip_format.empty()) { in update()
295 tooltip_format, in update()
H A Dnetwork.cpp290 std::string tooltip_format; in update() local
319 tooltip_format = config_["tooltip-format-" + state].asString(); in update()
355 if (tooltip_format.empty() && config_["tooltip-format"].isString()) { in update()
356 tooltip_format = config_["tooltip-format"].asString(); in update()
358 if (!tooltip_format.empty()) { in update()
360 tooltip_format, in update()
H A Dclock.cpp122 auto tooltip_format = config_["tooltip-format"].asString(); in update() local
123 …text = fmt::format(tooltip_format, wtime, fmt::arg(kCalendarPlaceholder.c_str(), calendar_lines), … in update()
/dports/x11/waybar/Waybar-0.9.12/src/modules/mpd/
H A Dmpd.cpp88 std::string tooltip_format; in setLabel() local
89 tooltip_format = config_["tooltip-format-disconnected"].isString() in setLabel()
93 label_.set_tooltip_text(tooltip_format); in setLabel()
178 std::string tooltip_format; in setLabel() local
179 tooltip_format = config_["tooltip-format"].isString() ? config_["tooltip-format"].asString() in setLabel()
182 auto tooltip_text = fmt::format(tooltip_format, in setLabel()
/dports/audio/xfce4-mpc-plugin/xfce4-mpc-plugin-0.5.2/panel-plugin/
H A Dxfce4-mpc-plugin.c109 if (mpc->tooltip_format != NULL) in mpc_read_config()
110 g_free (mpc->tooltip_format); in mpc_read_config()
121 …mpc->tooltip_format = g_strdup(xfce_rc_read_entry (rc, "tooltip_format", "Volume : %vol%% - Mpd %s… in mpc_read_config()
160 xfce_rc_write_entry (rc, "tooltip_format", mpc->tooltip_format); in mpc_write_config()
190 mpc->tooltip_format = g_strdup(gtk_entry_get_text(GTK_ENTRY(dialog->textbox_tooltip_format))); in mpc_dialog_apply_options()
195 if (0 == strlen(mpc->tooltip_format)) in mpc_dialog_apply_options()
196 …mpc->tooltip_format = g_strdup("Volume : %vol%% - Mpd %status%%newline%%artist% - %album% -/- (#%t… in mpc_dialog_apply_options()
204 …->mpd_host, mpc->mpd_port, mpc->mpd_password, mpc->client_appl, mpc->tooltip_format, mpc->playlist… in mpc_dialog_apply_options()
326 gtk_entry_set_text(GTK_ENTRY(dialog->textbox_tooltip_format),mpc->tooltip_format); in mpc_create_options()
481 str = g_string_new(mpc->tooltip_format); in enter_cb()
[all …]
H A Dxfce4-mpc-plugin.h50 gchar * tooltip_format; member
/dports/x11/waybar/Waybar-0.9.12/src/modules/memory/
H A Dcommon.cpp72 auto tooltip_format = config_["tooltip-format"].asString(); in update() local
73 label_.set_tooltip_text(fmt::format(tooltip_format, in update()
/dports/x11-wm/xfce4-panel/xfce4-panel-4.16.3/plugins/clock/
H A Dclock.c152 gchar *tooltip_format; member
271 plugin->tooltip_format = g_strdup (DEFAULT_TOOLTIP_FORMAT); in clock_plugin_init()
313 g_value_set_string (value, plugin->tooltip_format); in clock_plugin_get_property()
356 g_free (plugin->tooltip_format); in clock_plugin_set_property()
357 plugin->tooltip_format = g_value_dup_string (value); in clock_plugin_set_property()
419 interval = clock_time_interval_from_format (plugin->tooltip_format); in clock_plugin_enter_notify_event()
532 g_free (plugin->tooltip_format); in clock_plugin_free_data()
1410 string = clock_time_strdup_strftime (plugin->time, plugin->tooltip_format); in clock_plugin_tooltip()
/dports/games/widelands/widelands-build21/src/wui/
H A Dattack_box.cc223 boost::format tooltip_format("<p>%s%s%s</p>"); in init() local
230 (tooltip_format % in init()
247 (tooltip_format % in init()
H A Dinputqueuedisplay.cc332 boost::format tooltip_format("<p>%s%s%s</p>"); in update_max_fill_buttons() local
337 (tooltip_format % in update_max_fill_buttons()
362 (tooltip_format in update_max_fill_buttons()
/dports/deskutils/xfce4-notifyd/xfce4-notifyd-0.6.2/panel-plugin/
H A Dnotification-plugin-log.c199 const char *tooltip_format = "<b>\%s</b> - \%s\n\%s"; in notification_plugin_menu_populate() local
306 markup = g_strdup_printf (tooltip_format, app_name, tooltip_timestamp, tmp); in notification_plugin_menu_populate()