mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-02 14:25:59 +02:00
Fixed some tooltips, added Link Dependencies, more int-ness
This commit is contained in:
parent
939c818581
commit
d0e8332150
30 changed files with 180 additions and 432 deletions
|
@ -490,15 +490,20 @@ namespace Beefy
|
|||
BFWindow_SetMinimumSize(mNativeWindow, minWidth, minHeight, clientSized);
|
||||
}
|
||||
|
||||
public virtual void Moved()
|
||||
{
|
||||
BFWindow_GetPosition(mNativeWindow, out mX, out mY, out mWindowWidth, out mWindowHeight, out mClientX, out mClientY, out mClientWidth, out mClientHeight);
|
||||
public virtual void RehupSize()
|
||||
{
|
||||
BFWindow_GetPosition(mNativeWindow, out mX, out mY, out mWindowWidth, out mWindowHeight, out mClientX, out mClientY, out mClientWidth, out mClientHeight);
|
||||
|
||||
int32 showKind = 0;
|
||||
BFWindow_GetPlacement(mNativeWindow, out mNormX, out mNormY, out mNormWidth, out mNormHeight, out showKind);
|
||||
mShowKind = (.)showKind;
|
||||
|
||||
mIsDirty = true;
|
||||
}
|
||||
|
||||
public virtual void Moved()
|
||||
{
|
||||
RehupSize();
|
||||
}
|
||||
|
||||
public virtual void SetClientPosition(float x, float y)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue