blob: 66dc44a66fed66cb799af778b7b85d928c36c717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;
import org.trinitydesktop.qt.TQColor;
import org.trinitydesktop.qt.TQFont;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQPoint;
import org.trinitydesktop.qt.TQMouseEvent;
import org.trinitydesktop.qt.TQWidget;
import org.trinitydesktop.qt.TQResizeEvent;
public interface KMdiChildAreaSignals {
/**
Signals that there aren't maximized child frames any more
@short Signals that there aren't maximized child frames any more
*/
void noMaximizedChildFrmLeft(KMdiChildFrm arg1);
/**
Signals that the child frames are maximized now
@short Signals that the child frames are maximized now
*/
void nowMaximized(boolean arg1);
/**
Signals a KMdiMainFrm that the signal/slot connections of the system buttons in the
menubar (only in Maximize mode) must be updated to another MDI view because the focused
MDI view has changed
@short Signals a KMdiMainFrm that the signal/slot connections of the system buttons in the menubar (only in Maximize mode) must be updated to another MDI view because the focused MDI view has changed
*/
void sysButtonConnectionsMustChange(KMdiChildFrm arg1, KMdiChildFrm arg2);
/**
Signals a KMdiMainFrm that the 'Window' popup menu must be shown
@short Signals a KMdiMainFrm that the 'Window' popup menu must be shown
*/
void popupWindowMenu(TQPoint arg1);
/**
Signals that the last attached (docked) MDI view has been closed.
Note: Detached MDI views can remain.
@short Signals that the last attached (docked) MDI view has been closed.
*/
void lastChildFrmClosed();
}
|