Links to classes
Rice basic class
The followings are links to a basic class that is built in as a standard in the Rice language.
bool | Represents a Boolean (true or false) value. |
dictionary | Represents a collection of keys and values. |
error | Represents a error information. |
int | Represents a 32-bit signed integer. |
list | Represents a list that can be accessed by index. |
long | Represents a 64-bit signed integer. |
proxy | Provides a mechanism to conceal the type of an instance. |
queue | Represents a first-in-first-out collection. |
real | Represents 64-bit floating-point values. |
rice | Represents the language system. |
stack | Represents a last-in-first-out collection. |
string | Represents a string. |
Cooker built-in class
The followings are links to a class that is standard built in Cooker.
application | Represents the execution environment. |
bitmap | Represents an image. |
browser | Represents the browser used in the Cooker. |
clipboard | Provides the function to operate the clipboard. |
command | Represents a SQL statement to execute on a Sqlite database. |
connection | Represents a connection to a Sqlite database. |
cookiemanager | Provides the function to manage cookies. |
cookie | Represents a cookie. |
dbreader | Provides the function to read data from SQL statement execution results. |
jsexecutor | Represents the function to execute JavaScript. |
message | Represents a dialog box for displaying a message. |
fileselector | Represents a file selection dialog. |
sleep | Provides the function to sleep the system. |
switch | Represents a switch that controls event handling. |
timer | Provides a function that calls a method at a specified time interval. |
transaction | Represents a transaction in the Sqlite database. |
window | Represents the application window. |
Cooker dynamic embedded classes included in the distribution archive
The followings are links to a class that will be dynamically embedded. it is written in C# to extend the Cooker.
These classes included in the distribution archive.
datetime | Represents the date and time. |
directory | Provides the function to manipulate a directory. |
encoder | Provides the function to encode or decode text. |
file | Provides the function to manipulate a file. |
json | Provides a function to browse JSON (JavaScript Object Notation) data. |
jsonnull | Represents null of JSON (JavaScript Object Notation). |
loader | Provides the function to download and upload. |
match | Represents a substring matching regular expressions. |
mouse | Provides the function to manipulate the mouse. |
reader | Provides the function to input from the text file. |
regex | Represents a regular expression. |
sendkeys | Provides the function to simulate key input. |
uri | Represents a URI. |
writer | Provides the function to output to the text file. |
Other dynamic embedded class
The followings are links to a class that will be dynamically embedded. it is written in C# to extend the Cooker.
These classes do not include in the distribution archive. If you need these classes, please incorporate them yourself.
zaifapi | Provides a function to trade on the Zaif. |
zaifres | It is a class for using Zaif APIs asynchronously. |
bitbankapi | Provides a function to trade on the bitbank. |
bitbankres | It is a class for using bitbank APIs asynchronously. |
wfpool | Provides functions to assist window operations. |
winframe | Provides functions to handle a window. |
pipe | Represents a channel for interprocess communication. |
pipeclient | Provides the function to operate the channel for interprocess communication. |
User defined class
Links to classes written in Rice language.