Sponsored Content
The Lounge What is on Your Mind? Thanks Button Coming to Mobile Soon Post 303028721 by Neo on Sunday 13th of January 2019 11:03:00 PM
Old 01-14-2019
Update:

Thanks is mostly working on mobile now.

It's not working perfectly, but it's working. There is a small tooltip bug I need to fix after thanks is given on mobile, which only effects the button tooltip after thanks is given; but I think it's basically working.

Will working on fixing the tooltip issue soon.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Script for using the Back button and the Close button

Here's a question I have for anyone that might be able to help me: I can write a html script that will allow the user to return to the previous page using the back button, and I can write a script that will allow the user to return to the previous page using the close button, but...is there a... (1 Reply)
Discussion started by: mdgibson
1 Replies

2. Shell Programming and Scripting

need help with html button

Hello everyone, I am trying to implement an html button that will call a script and pass two arguments "perl script.pl website.com 1" this is for a search results page on a php spider called "sphider". the variable $url? is the url and Than needs to be one of the arguments in calling the script.... (0 Replies)
Discussion started by: mike171562
0 Replies

3. UNIX for Dummies Questions & Answers

Changing middle mouse button for pasting to right mouse button in cygwin rxvt

Hi, I'm using rxvt in Cygwin and I'm wondering how to change my mouse bindings from the middle button for pasting to the right button. The main reason why I want to do this is because my laptop doesn't have a middle mouse button. Thanks for any help! (2 Replies)
Discussion started by: sayeo
2 Replies

4. Shell Programming and Scripting

html/bash button

Hello everyone I am writing a cgi script in bash/html. I am trying something new with this one I have seperated the html code from the scripting. The html code is found in text files on the drive and the scripting is only one script in the cgi bin and i am using "<select multiple name="state"... (3 Replies)
Discussion started by: wlane7878
3 Replies

5. Shell Programming and Scripting

Wget invoke a button

Hi I have a certain URL(ABC TV Network - Shows, Episodes, Schedules & Programming - ABC.com) and I want to invoke a button (say abc) in it from BASH. How should I do it using wget? Any help! Thanks in advance (2 Replies)
Discussion started by: ankur328
2 Replies

6. Post Here to Contact Site Administrators and Moderators

New Thread Button

Where do I find the New Thread Button so I can post a message to get some help in an issue I am having ? (2 Replies)
Discussion started by: kstalder
2 Replies

7. What is on Your Mind?

Mobile Thanks Now Visible in Mobile

Hey, I have enable post thanks (viewing thanks, not yet giving thanks) in mobile: https://www.unix.com/members/1-albums214-picture1018.jpeg I plan to also add the button to "give thanks on mobile. In addition, I will change the formatting (color and justification) of this new mobile... (1 Reply)
Discussion started by: Neo
1 Replies

8. What is on Your Mind?

Thank You Button is Working on Mobile Now

RE: https://www.unix.com/what-is-on-your-mind-/280775-thanks-button-coming-mobile-soon.html Now, the "Thank You" icon is working on mobile so all registered members can "give thanks" on mobile. Seems to work fine. (2 Replies)
Discussion started by: Neo
2 Replies
Gtk2::Button(3) 					User Contributed Perl Documentation					   Gtk2::Button(3)

NAME
Gtk2::Button HIERARCHY
Glib::Object +----Glib::InitiallyUnowned +----Gtk2::Object +----Gtk2::Widget +----Gtk2::Container +----Gtk2::Bin +----Gtk2::Button INTERFACES
Glib::Object::_Unregistered::AtkImplementorIface Gtk2::Buildable Glib::Object::_Unregistered::GtkActivatable MNEMONICS
Mnemonics are "memory aids"; in GTK+, a mnemonic is an underlined character which corresponds to a keyboard accelerator. For a button, that means pressing Alt and that key activates the button. For convenience, Gtk2-Perl uses mnemonics by default on widgets that support them. If characters in label string are preceded by an underscore, they are underlined. If you need a literal underscore character in a label, use '__' (two underscores). If you don't want to use mnemonics at all, use the non-mnemonic version explicitly (e.g. "Gtk2::Button::new_with_label"). METHODS
widget = Gtk2::Button->new widget = Gtk2::Button->new ($mnemonic) o $mnemonic (string) used to label the widget, see "MNEMONICS" widget = Gtk2::Button->new_from_stock ($stock_id) o $stock_id (string) creates a new button using the icon and text from the specified stock item, see Gtk2::Stock widget = Gtk2::Button->new_with_label ($label) o $label (string) used to label the widget widget = Gtk2::Button->new_with_mnemonic ($mnemonic) o $mnemonic (string) used to label the widget, see "MNEMONICS" (xalign, yalign) = $button->get_alignment Since: gtk+ 2.4 $button->set_alignment ($xalign, $yalign) o $xalign (double) o $yalign (double) Since: gtk+ 2.4 $button->clicked $button->enter boolean = $button->get_focus_on_click Since: gtk+ 2.4 $button->set_focus_on_click ($focus_on_click) o $focus_on_click (boolean) Since: gtk+ 2.4 widget or undef = $button->get_image Since: gtk+ 2.6 positiontype = $button->get_image_position Since: gtk+ 2.9 $button->set_image_position ($position) o $position (Gtk2::PositionType) Since: gtk+ 2.9 $button->set_image ($image) o $image (Gtk2::Widget or undef) Since: gtk+ 2.6 string = $button->get_label $button->set_label ($label) o $label (string) $button->leave $button->pressed $button->released reliefstyle = $button->get_relief $button->set_relief ($newstyle) o $newstyle (Gtk2::ReliefStyle) boolean = $button->get_use_stock $button->set_use_stock ($use_stock) o $use_stock (boolean) boolean = $button->get_use_underline $button->set_use_underline ($use_underline) o $use_underline (boolean) PROPERTIES
'focus-on-click' (boolean : readable / writable / private) Whether the button grabs focus when it is clicked with the mouse 'image' (Gtk2::Widget : readable / writable / private) Child widget to appear next to the button text 'image-position' (Gtk2::PositionType : readable / writable / private) The position of the image relative to the text 'label' (string : readable / writable / construct / private) Text of the label widget inside the button, if the button contains a label widget 'relief' (Gtk2::ReliefStyle : readable / writable / private) The border relief style 'use-stock' (boolean : readable / writable / construct / private) If set, the label is used to pick a stock item instead of being displayed 'use-underline' (boolean : readable / writable / construct / private) If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key 'xalign' (Glib::Float : readable / writable / private) Horizontal position of child in available space. 0.0 is left aligned, 1.0 is right aligned 'yalign' (Glib::Float : readable / writable / private) Vertical position of child in available space. 0.0 is top aligned, 1.0 is bottom aligned SIGNALS
activate (Gtk2::Button) pressed (Gtk2::Button) released (Gtk2::Button) clicked (Gtk2::Button) enter (Gtk2::Button) leave (Gtk2::Button) ENUMS AND FLAGS
enum Gtk2::PositionType o 'left' / 'GTK_POS_LEFT' o 'right' / 'GTK_POS_RIGHT' o 'top' / 'GTK_POS_TOP' o 'bottom' / 'GTK_POS_BOTTOM' enum Gtk2::ReliefStyle o 'normal' / 'GTK_RELIEF_NORMAL' o 'half' / 'GTK_RELIEF_HALF' o 'none' / 'GTK_RELIEF_NONE' SEE ALSO
Gtk2, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gtk2::Widget, Gtk2::Container, Gtk2::Bin COPYRIGHT
Copyright (C) 2003-2008 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.12.1 2010-07-05 Gtk2::Button(3)
All times are GMT -4. The time now is 12:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy