C# Class Server.Gumps.Gump

Afficher le fichier Open project: brodock/runuo Class Usage Examples

Méthodes publiques

Méthode Description
Add ( GumpEntry g ) : void
AddAlphaRegion ( int x, int y, int width, int height ) : void
AddBackground ( int x, int y, int width, int height, int gumpID ) : void
AddButton ( int x, int y, int normalID, int pressedID, int buttonID, GumpButtonType type, int param ) : void
AddCheck ( int x, int y, int inactiveID, int activeID, bool initialState, int switchID ) : void
AddGroup ( int group ) : void
AddHtml ( int x, int y, int width, int height, string text, bool background, bool scrollbar ) : void
AddHtmlLocalized ( int x, int y, int width, int height, int number, bool background, bool scrollbar ) : void
AddHtmlLocalized ( int x, int y, int width, int height, int number, int color, bool background, bool scrollbar ) : void
AddHtmlLocalized ( int x, int y, int width, int height, int number, string args, int color, bool background, bool scrollbar ) : void
AddImage ( int x, int y, int gumpID ) : void
AddImage ( int x, int y, int gumpID, int hue ) : void
AddImageTiled ( int x, int y, int width, int height, int gumpID ) : void
AddImageTiledButton ( int x, int y, int normalID, int pressedID, int buttonID, GumpButtonType type, int param, int itemID, int hue, int width, int height ) : void
AddImageTiledButton ( int x, int y, int normalID, int pressedID, int buttonID, GumpButtonType type, int param, int itemID, int hue, int width, int height, int localizedTooltip ) : void
AddItem ( int x, int y, int itemID ) : void
AddItem ( int x, int y, int itemID, int hue ) : void
AddLabel ( int x, int y, int hue, string text ) : void
AddLabelCropped ( int x, int y, int width, int height, int hue, string text ) : void
AddPage ( int page ) : void
AddRadio ( int x, int y, int inactiveID, int activeID, bool initialState, int switchID ) : void
AddTextEntry ( int x, int y, int width, int height, int hue, int entryID, string initialText ) : void
AddTextEntry ( int x, int y, int width, int height, int hue, int entryID, string initialText, int size ) : void
AddTooltip ( int number ) : void
GetTypeID ( Type type ) : int
Gump ( int x, int y ) : System
Intern ( string value ) : int
Invalidate ( ) : void
OnResponse ( Server.Network.NetState sender, RelayInfo info ) : void
OnServerClose ( Server.Network.NetState owner ) : void
Remove ( GumpEntry g ) : void
SendTo ( Server.Network.NetState state ) : void
StringToBuffer ( string str ) : byte[]

Private Methods

Méthode Description
Compile ( ) : Packet
Compile ( Server.Network.NetState ns ) : Packet

Method Details

Add() public méthode

public Add ( GumpEntry g ) : void
g GumpEntry
Résultat void

AddAlphaRegion() public méthode

public AddAlphaRegion ( int x, int y, int width, int height ) : void
x int
y int
width int
height int
Résultat void

AddBackground() public méthode

public AddBackground ( int x, int y, int width, int height, int gumpID ) : void
x int
y int
width int
height int
gumpID int
Résultat void

AddButton() public méthode

public AddButton ( int x, int y, int normalID, int pressedID, int buttonID, GumpButtonType type, int param ) : void
x int
y int
normalID int
pressedID int
buttonID int
type GumpButtonType
param int
Résultat void

AddCheck() public méthode

public AddCheck ( int x, int y, int inactiveID, int activeID, bool initialState, int switchID ) : void
x int
y int
inactiveID int
activeID int
initialState bool
switchID int
Résultat void

AddGroup() public méthode

public AddGroup ( int group ) : void
group int
Résultat void

AddHtml() public méthode

public AddHtml ( int x, int y, int width, int height, string text, bool background, bool scrollbar ) : void
x int
y int
width int
height int
text string
background bool
scrollbar bool
Résultat void

AddHtmlLocalized() public méthode

public AddHtmlLocalized ( int x, int y, int width, int height, int number, bool background, bool scrollbar ) : void
x int
y int
width int
height int
number int
background bool
scrollbar bool
Résultat void

AddHtmlLocalized() public méthode

public AddHtmlLocalized ( int x, int y, int width, int height, int number, int color, bool background, bool scrollbar ) : void
x int
y int
width int
height int
number int
color int
background bool
scrollbar bool
Résultat void

AddHtmlLocalized() public méthode

public AddHtmlLocalized ( int x, int y, int width, int height, int number, string args, int color, bool background, bool scrollbar ) : void
x int
y int
width int
height int
number int
args string
color int
background bool
scrollbar bool
Résultat void

AddImage() public méthode

public AddImage ( int x, int y, int gumpID ) : void
x int
y int
gumpID int
Résultat void

AddImage() public méthode

public AddImage ( int x, int y, int gumpID, int hue ) : void
x int
y int
gumpID int
hue int
Résultat void

AddImageTiled() public méthode

public AddImageTiled ( int x, int y, int width, int height, int gumpID ) : void
x int
y int
width int
height int
gumpID int
Résultat void

AddImageTiledButton() public méthode

public AddImageTiledButton ( int x, int y, int normalID, int pressedID, int buttonID, GumpButtonType type, int param, int itemID, int hue, int width, int height ) : void
x int
y int
normalID int
pressedID int
buttonID int
type GumpButtonType
param int
itemID int
hue int
width int
height int
Résultat void

AddImageTiledButton() public méthode

public AddImageTiledButton ( int x, int y, int normalID, int pressedID, int buttonID, GumpButtonType type, int param, int itemID, int hue, int width, int height, int localizedTooltip ) : void
x int
y int
normalID int
pressedID int
buttonID int
type GumpButtonType
param int
itemID int
hue int
width int
height int
localizedTooltip int
Résultat void

AddItem() public méthode

public AddItem ( int x, int y, int itemID ) : void
x int
y int
itemID int
Résultat void

AddItem() public méthode

public AddItem ( int x, int y, int itemID, int hue ) : void
x int
y int
itemID int
hue int
Résultat void

AddLabel() public méthode

public AddLabel ( int x, int y, int hue, string text ) : void
x int
y int
hue int
text string
Résultat void

AddLabelCropped() public méthode

public AddLabelCropped ( int x, int y, int width, int height, int hue, string text ) : void
x int
y int
width int
height int
hue int
text string
Résultat void

AddPage() public méthode

public AddPage ( int page ) : void
page int
Résultat void

AddRadio() public méthode

public AddRadio ( int x, int y, int inactiveID, int activeID, bool initialState, int switchID ) : void
x int
y int
inactiveID int
activeID int
initialState bool
switchID int
Résultat void

AddTextEntry() public méthode

public AddTextEntry ( int x, int y, int width, int height, int hue, int entryID, string initialText ) : void
x int
y int
width int
height int
hue int
entryID int
initialText string
Résultat void

AddTextEntry() public méthode

public AddTextEntry ( int x, int y, int width, int height, int hue, int entryID, string initialText, int size ) : void
x int
y int
width int
height int
hue int
entryID int
initialText string
size int
Résultat void

AddTooltip() public méthode

public AddTooltip ( int number ) : void
number int
Résultat void

GetTypeID() public static méthode

public static GetTypeID ( Type type ) : int
type System.Type
Résultat int

Gump() public méthode

public Gump ( int x, int y ) : System
x int
y int
Résultat System

Intern() public méthode

public Intern ( string value ) : int
value string
Résultat int

Invalidate() public méthode

public Invalidate ( ) : void
Résultat void

OnResponse() public méthode

public OnResponse ( Server.Network.NetState sender, RelayInfo info ) : void
sender Server.Network.NetState
info RelayInfo
Résultat void

OnServerClose() public méthode

public OnServerClose ( Server.Network.NetState owner ) : void
owner Server.Network.NetState
Résultat void

Remove() public méthode

public Remove ( GumpEntry g ) : void
g GumpEntry
Résultat void

SendTo() public méthode

public SendTo ( Server.Network.NetState state ) : void
state Server.Network.NetState
Résultat void

StringToBuffer() public static méthode

public static StringToBuffer ( string str ) : byte[]
str string
Résultat byte[]