Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wxminiframe(3erl) [linux man page]

wxMiniFrame(3erl)					     Erlang Module Definition						 wxMiniFrame(3erl)

NAME
wxMiniFrame - See external documentation: wxMiniFrame. DESCRIPTION
See external documentation: wxMiniFrame . This class is derived (and can use functions) from: wxFrame wxTopLevelWindow wxWindow wxEvtHandler DATA TYPES
wxMiniFrame() : An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes. EXPORTS
new() -> wxMiniFrame() See external documentation . new(Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string()) -> wxMiniFrame() Equivalent to new(Parent, Id, Title, []) . new(Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string(), Options::[Option]) -> wxMiniFrame() Types Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . create(This::wxMiniFrame(), Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string()) -> bool() Equivalent to create(This, Parent, Id, Title, []) . create(This::wxMiniFrame(), Parent::wxWindow() (see module wxWindow), Id::integer(), Title::string(), Options::[Option]) -> bool() Types Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . destroy(This::wxMiniFrame()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxMiniFrame(3erl)

Check Out this Related Man Page

wxSpinButton(3erl)					     Erlang Module Definition						wxSpinButton(3erl)

NAME
wxSpinButton - See external documentation: wxSpinButton. DESCRIPTION
See external documentation: wxSpinButton . This class is derived (and can use functions) from: wxControl wxWindow wxEvtHandler DATA TYPES
wxSpinButton() : An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes. EXPORTS
new() -> wxSpinButton() See external documentation . new(Parent::wxWindow() (see module wxWindow)) -> wxSpinButton() Equivalent to new(Parent, []) . new(Parent::wxWindow() (see module wxWindow), Options::[Option]) -> wxSpinButton() Types Option = {id, integer()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . create(This::wxSpinButton(), Parent::wxWindow() (see module wxWindow)) -> bool() Equivalent to create(This, Parent, []) . create(This::wxSpinButton(), Parent::wxWindow() (see module wxWindow), Options::[Option]) -> bool() Types Option = {id, integer()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . getMax(This::wxSpinButton()) -> integer() See external documentation . getMin(This::wxSpinButton()) -> integer() See external documentation . getValue(This::wxSpinButton()) -> integer() See external documentation . setRange(This::wxSpinButton(), MinVal::integer(), MaxVal::integer()) -> ok See external documentation . setValue(This::wxSpinButton(), Value::integer()) -> ok See external documentation . destroy(This::wxSpinButton()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxSpinButton(3erl)
Man Page

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to create file of fixed size?

I want to create a file, that has a fixed size, as a placeholder so no one will write to that disc and I may store backup files at a later date. how can I do this? Using HP 9000/300 computer with HP 7937 Disc Drives and HPUX 6.5 OS. (3 Replies)
Discussion started by: dblevans
3 Replies

2. UNIX for Dummies Questions & Answers

Change Terminal Title

(0 Replies)
Discussion started by: here2learn
0 Replies

3. UNIX for Advanced & Expert Users

Shell script to convert to Title case

I need a shell script which will convert the given string to Title case. E.g "hi man" to "Hi man" (5 Replies)
Discussion started by: SankarV
5 Replies

4. Shell Programming and Scripting

Comparing string and integer in IF

hi, I need to create an IF condition. I read a line from a file and get the 5 word using space as a delimited. This word can have only two values either '*' or '1-5' I need to write an IF condition for two cases. I can either compare it to * or 1-5(or even 1 by cutting and getting only the... (3 Replies)
Discussion started by: kaushys
3 Replies

5. UNIX for Dummies Questions & Answers

How to seach in specific directories?

Hi, How can I perform a search on parent directories and not child? I need to search and gzip files that are in /Home/Parent, but there are subdirectories under Parent ( /Home/Parent/Today). I don't want to gzip anything in the "Today" folder, just stop at the parent. There are about 50... (2 Replies)
Discussion started by: bbbngowc
2 Replies

6. Shell Programming and Scripting

Traverse through directory....

hi I have a directory structure like Parent Parent/child1/ Parent/child2/ Parent/child3/ and the each main directory contains Parent/child1/file1.txt, Parent/child1/fil2.zip ....... Parent/child2/file1.txt,Parent/child/fil2.zip ...... Now i want to traverse to each and want to... (1 Reply)
Discussion started by: Reddy482
1 Replies

7. Shell Programming and Scripting

Using loops in a search

Title= echo -n "Title: " read Title echo -n "Author:" read Author validation=`grep -i "$Title" fruit | grep -i "$Author" | awk -F":" '{ print $1}'` if ; then clear echo "Error! Book Already Exist" else echo "You may input a new book in/ (1 Reply)
Discussion started by: gregarion
1 Replies

8. Shell Programming and Scripting

Perl - Title Case after apostrophe

I've got: $string =~ s/(\w+)/\u\L$1/g; Which capitalizes each word in the string. The problem is if I have a string with an apostrophe the first letter after it gets capitalized as well. So Bob's becomes Bob'S. Thanks for any quick fixes! (4 Replies)
Discussion started by: mjmtaiwan
4 Replies

9. Shell Programming and Scripting

Deleting lines not starting with numbers with sed

Title says all :p Thanks for your help (4 Replies)
Discussion started by: drbiloukos
4 Replies

10. UNIX for Dummies Questions & Answers

Deleting/Removing sentence from .txt

Hi, now i need to remove the entires i inserted into my .txt file. echo -n "Title: " read Title echo -n "Author: " read Author if grep -q "$Title: $Author" "BookDB.txt"; then sed '$Title: $Author' BookDB.txt echo "Book Title '$Title' removed successfully!" ... (6 Replies)
Discussion started by: santonio
6 Replies