forked from kohsuke/com4j
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIPicture.java
More file actions
196 lines (149 loc) · 3.14 KB
/
Copy pathIPicture.java
File metadata and controls
196 lines (149 loc) · 3.14 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package com4j.stdole;
import com4j.*;
/**
* Picture Object
*
* <p>
* This interface was generated using tlbimp on stdole2.tlb
* </p>
*/
@IID("{7BF80980-BF32-101A-8BBB-00AA00300CAB}")
public interface IPicture extends Com4jObject {
// Methods:
/**
* <p>
* Getter method for the COM property "Handle"
* </p>
* @return Returns a value of type int
*/
@VTID(3)
int getHandle();
/**
* <p>
* Getter method for the COM property "hPal"
* </p>
* @return Returns a value of type int
*/
@VTID(4)
int getHPal();
/**
* <p>
* Getter method for the COM property "Type"
* </p>
* @return Returns a value of type short
*/
@VTID(5)
short getType();
/**
* <p>
* Getter method for the COM property "Width"
* </p>
* @return Returns a value of type int
*/
@VTID(6)
int getWidth();
/**
* <p>
* Getter method for the COM property "Height"
* </p>
* @return Returns a value of type int
*/
@VTID(7)
int getHeight();
/**
* @param hdc Mandatory int parameter.
* @param x Mandatory int parameter.
* @param y Mandatory int parameter.
* @param cx Mandatory int parameter.
* @param cy Mandatory int parameter.
* @param xSrc Mandatory int parameter.
* @param ySrc Mandatory int parameter.
* @param cxSrc Mandatory int parameter.
* @param cySrc Mandatory int parameter.
* @param prcWBounds Mandatory java.nio.Buffer parameter.
*/
@VTID(8)
void render(
int hdc,
int x,
int y,
int cx,
int cy,
int xSrc,
int ySrc,
int cxSrc,
int cySrc,
java.nio.Buffer prcWBounds);
/**
* <p>
* Setter method for the COM property "hPal"
* </p>
* @param phpal Mandatory int parameter.
*/
@VTID(9)
void setHPal(
int phpal);
/**
* <p>
* Getter method for the COM property "CurDC"
* </p>
* @return Returns a value of type int
*/
@VTID(10)
int getCurDC();
/**
* @param hdcIn Mandatory int parameter.
* @param phdcOut Mandatory Holder<Integer> parameter.
* @param phbmpOut Mandatory Holder<Integer> parameter.
*/
@VTID(11)
void selectPicture(
int hdcIn,
Holder<Integer> phdcOut,
Holder<Integer> phbmpOut);
/**
* <p>
* Getter method for the COM property "KeepOriginalFormat"
* </p>
* @return Returns a value of type boolean
*/
@VTID(12)
boolean getKeepOriginalFormat();
/**
* <p>
* Setter method for the COM property "KeepOriginalFormat"
* </p>
* @param pfkeep Mandatory boolean parameter.
*/
@VTID(13)
void setKeepOriginalFormat(
boolean pfkeep);
/**
*/
@VTID(14)
void pictureChanged();
/**
* @param pstm Mandatory java.nio.Buffer parameter.
* @param fSaveMemCopy Mandatory boolean parameter.
* @return Returns a value of type int
*/
@VTID(15)
int saveAsFile(
java.nio.Buffer pstm,
boolean fSaveMemCopy);
/**
* <p>
* Getter method for the COM property "Attributes"
* </p>
* @return Returns a value of type int
*/
@VTID(16)
int getAttributes();
/**
* @param hdc Mandatory int parameter.
*/
@VTID(17)
void setHdc(
int hdc);
// Properties:
}