{"id":6299,"date":"2022-12-20T18:58:07","date_gmt":"2022-12-20T21:58:07","guid":{"rendered":"http:\/\/lode.uno\/linux-man\/index.php\/2022\/12\/20\/ttksizegrip-mann\/"},"modified":"2022-12-20T18:58:07","modified_gmt":"2022-12-20T21:58:07","slug":"ttksizegrip-mann","status":"publish","type":"post","link":"https:\/\/lode.uno\/linux-man\/2022\/12\/20\/ttksizegrip-mann\/","title":{"rendered":"ttk::sizegrip (mann)"},"content":{"rendered":"<h1 align=\"center\">ttk::sizegrip<\/h1>\n<p> <a href=\"#NAME\">NAME<\/a><br \/> <a href=\"#SYNOPSIS\">SYNOPSIS<\/a><br \/> <a href=\"#DESCRIPTION\">DESCRIPTION<\/a><br \/> <a href=\"#STANDARD OPTIONS\">STANDARD OPTIONS<\/a><br \/> <a href=\"#WIDGET COMMAND\">WIDGET COMMAND<\/a><br \/> <a href=\"#PLATFORM-SPECIFIC NOTES\">PLATFORM-SPECIFIC NOTES<\/a><br \/> <a href=\"#EXAMPLES\">EXAMPLES<\/a><br \/> <a href=\"#BUGS\">BUGS<\/a><br \/> <a href=\"#STYLING OPTIONS\">STYLING OPTIONS<\/a><br \/> <a href=\"#SEE ALSO\">SEE ALSO<\/a><br \/> <a href=\"#KEYWORDS\">KEYWORDS<\/a> <\/p>\n<hr>\n<p>______________________________________________________________________________<\/p>\n<h2>NAME <a name=\"NAME\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">ttk::sizegrip \u2212 Bottom-right corner resize widget<\/p>\n<h2>SYNOPSIS <a name=\"SYNOPSIS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>ttk::sizegrip<\/b> <i>pathName<\/i> ?<i>options<\/i>? ______________________________________________________________________________<\/p>\n<h2>DESCRIPTION <a name=\"DESCRIPTION\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">A <b>ttk::sizegrip<\/b> widget (also known as a <i>grow box<\/i>) allows the user to resize the containing toplevel window by pressing and dragging the grip.<\/p>\n<h2>STANDARD OPTIONS <a name=\"STANDARD OPTIONS\"><\/a> <\/h2>\n<table width=\"100%\" border=\"0\" rules=\"none\" frame=\"void\" cellspacing=\"0\" cellpadding=\"0\">\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"23%\">\n<p><b>\u2212class<\/b><\/p>\n<\/td>\n<td width=\"32%\">\n<p><b>\u2212cursor<\/b><\/p>\n<\/td>\n<td width=\"34%\"> <\/td>\n<\/tr>\n<tr valign=\"top\" align=\"left\">\n<td width=\"11%\"><\/td>\n<td width=\"23%\">\n<p><b>\u2212style<\/b><\/p>\n<\/td>\n<td width=\"32%\">\n<p><b>\u2212takefocus<\/b><\/p>\n<\/td>\n<td width=\"34%\"> <\/td>\n<\/tr>\n<\/table>\n<p style=\"margin-left:11%; margin-top: 1em\">See the <b>ttk_widget<\/b> manual entry for details on the standard options.<\/p>\n<h2>WIDGET COMMAND <a name=\"WIDGET COMMAND\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">Sizegrip widgets support the standard <b>cget<\/b>, <b>configure<\/b>, <b>identify<\/b>, <b>instate<\/b>, and <b>state<\/b> methods. No other widget methods are used.<\/p>\n<h2>PLATFORM-SPECIFIC NOTES <a name=\"PLATFORM-SPECIFIC NOTES\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">On Mac OSX, toplevel windows automatically include a built-in size grip by default. Adding a <b>ttk::sizegrip<\/b> there is harmless, since the built-in grip will just mask the widget.<\/p>\n<h2>EXAMPLES <a name=\"EXAMPLES\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">Using pack:<\/p>\n<p style=\"margin-left:22%;\">pack [ttk::frame $top.statusbar] \u2212side bottom \u2212fill x <br \/> pack [<b>ttk::sizegrip<\/b> $top.statusbar.grip] \u2212side right \u2212anchor se<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">Using grid:<\/p>\n<p style=\"margin-left:22%;\">grid [<b>ttk::sizegrip<\/b> $top.statusbar.grip]  <br \/> \u2212row $lastRow \u2212column $lastColumn \u2212sticky se <br \/> # &#8230; optional: add vertical scrollbar in $lastColumn, <br \/> # &#8230; optional: add horizontal scrollbar in $lastRow<\/p>\n<h2>BUGS <a name=\"BUGS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">If the containing toplevel\u2019s position was specified relative to the right or bottom of the screen (e.g., \u201c<b>wm geometry &#8230;<\/b> <i>w<\/i><b>x<\/b><i>h<\/i><b>\u2212<\/b><i>x<\/i><b>\u2212<\/b><i>y<\/i>\u201d instead of \u201c<b>wm geometry &#8230;<\/b> <i>w<\/i><b>x<\/b><i>h<\/i><b>+<\/b><i>x<\/i><b>+<\/b><i>y<\/i>\u201d), the sizegrip widget will not resize the window.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>ttk::sizegrip<\/b> widgets only support \u201csoutheast\u201d resizing.<\/p>\n<h2>STYLING OPTIONS <a name=\"STYLING OPTIONS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">The class name for a <b>ttk::sizegrip<\/b> is <b>TSizegrip<\/b>.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>TSizegrip<\/b> styling options configurable with <b>ttk::style<\/b> are:<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\"><b>\u2212background<\/b> <i>color<\/i><\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">Some options are only available for specific themes.<\/p>\n<p style=\"margin-left:11%; margin-top: 1em\">See the <b>ttk::style<\/b> manual page for information on how to configure ttk styles.<\/p>\n<h2>SEE ALSO <a name=\"SEE ALSO\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">ttk::widget(n)<\/p>\n<h2>KEYWORDS <a name=\"KEYWORDS\"><\/a> <\/h2>\n<p style=\"margin-left:11%; margin-top: 1em\">widget, sizegrip, grow box<\/p>\n<hr>\n","protected":false},"excerpt":{"rendered":"<p>  ttk::sizegrip \u2212 Bottom-right corner resize widget <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3783,1],"tags":[2635,2901],"class_list":["post-6299","post","type-post","status-publish","format-standard","hentry","category-n-comandos-tcl-tk","category-sin-categoria","tag-mann","tag-ttk_sizegrip"],"gutentor_comment":0,"_links":{"self":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/6299","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/comments?post=6299"}],"version-history":[{"count":0,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/posts\/6299\/revisions"}],"wp:attachment":[{"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/media?parent=6299"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/categories?post=6299"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lode.uno\/linux-man\/wp-json\/wp\/v2\/tags?post=6299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}