⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ivideowindowimpl.java

📁 编辑视频文件
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * File:     IVideoWindowImpl.java * Project:  MPI Linguistic Application * Date:     02 May 2007 * * Copyright (C) 2001-2007  Max Planck Institute for Psycholinguistics * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package mpi.eudico.client.annotator.nativemedia.quartztypelib.impl;import com.jniwrapper.*;import com.jniwrapper.win32.*;import com.jniwrapper.win32.automation.*;import com.jniwrapper.win32.automation.impl.*;import com.jniwrapper.win32.automation.types.*;import com.jniwrapper.win32.com.*;import com.jniwrapper.win32.com.impl.*;import com.jniwrapper.win32.com.types.*;import mpi.eudico.client.annotator.nativemedia.quartztypelib.*;/** * Represents COM interface IVideoWindow */public class IVideoWindowImpl extends IDispatchImpl implements IVideoWindow {    /** Holds value of property DOCUMENT ME! */    public static final String INTERFACE_IDENTIFIER = IVideoWindow.INTERFACE_IDENTIFIER;    /** Holds value of property DOCUMENT ME! */    private static final IID _iid = IID.create(INTERFACE_IDENTIFIER);    /**     * Creates a new IVideoWindowImpl instance     */    public IVideoWindowImpl() {    }    /**     * Creates a new IVideoWindowImpl instance     *     * @param that DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    protected IVideoWindowImpl(IUnknownImpl that) throws ComException {        super(that);    }    /**     * Creates a new IVideoWindowImpl instance     *     * @param that DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public IVideoWindowImpl(IUnknown that) throws ComException {        super(that);    }    /**     * Creates a new IVideoWindowImpl instance     *     * @param clsid DOCUMENT ME!     * @param dwClsContext DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public IVideoWindowImpl(CLSID clsid, ClsCtx dwClsContext)        throws ComException {        super(clsid, dwClsContext);    }    /**     * Creates a new IVideoWindowImpl instance     *     * @param clsid DOCUMENT ME!     * @param pUnkOuter DOCUMENT ME!     * @param dwClsContext DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public IVideoWindowImpl(CLSID clsid, IUnknownImpl pUnkOuter,        ClsCtx dwClsContext) throws ComException {        super(clsid, pUnkOuter, dwClsContext);    }    /**     * DOCUMENT ME!     *     * @param strCaption DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setCaption(BStr /*[in]*/ strCaption) throws ComException {        invokeStandardVirtualMethod(7, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (strCaption == null) ? (Parameter) PTR_NULL                                     : new Const(strCaption)            });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public BStr getCaption() throws ComException {        BStr strCaption = new BStr();        invokeStandardVirtualMethod(8, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (strCaption == null) ? (Parameter) PTR_NULL                                     : new Pointer.OutOnly(strCaption)            });        return strCaption;    }    /**     * DOCUMENT ME!     *     * @param WindowStyle DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setWindowStyle(Int32 /*[in]*/ WindowStyle)        throws ComException {        invokeStandardVirtualMethod(9, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { WindowStyle });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getWindowStyle() throws ComException {        Int32 WindowStyle = new Int32();        invokeStandardVirtualMethod(10, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (WindowStyle == null) ? (Parameter) PTR_NULL                                      : new Pointer.OutOnly(WindowStyle)            });        return WindowStyle;    }    /**     * DOCUMENT ME!     *     * @param WindowStyleEx DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setWindowStyleEx(Int32 /*[in]*/ WindowStyleEx)        throws ComException {        invokeStandardVirtualMethod(11, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { WindowStyleEx });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getWindowStyleEx() throws ComException {        Int32 WindowStyleEx = new Int32();        invokeStandardVirtualMethod(12, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (WindowStyleEx == null) ? (Parameter) PTR_NULL                                        : new Pointer.OutOnly(WindowStyleEx)            });        return WindowStyleEx;    }    /**     * DOCUMENT ME!     *     * @param AutoShow DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setAutoShow(Int32 /*[in]*/ AutoShow) throws ComException {        invokeStandardVirtualMethod(13, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { AutoShow });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getAutoShow() throws ComException {        Int32 AutoShow = new Int32();        invokeStandardVirtualMethod(14, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (AutoShow == null) ? (Parameter) PTR_NULL                                   : new Pointer.OutOnly(AutoShow)            });        return AutoShow;    }    /**     * DOCUMENT ME!     *     * @param WindowState DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setWindowState(Int32 /*[in]*/ WindowState)        throws ComException {        invokeStandardVirtualMethod(15, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { WindowState });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getWindowState() throws ComException {        Int32 WindowState = new Int32();        invokeStandardVirtualMethod(16, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (WindowState == null) ? (Parameter) PTR_NULL                                      : new Pointer.OutOnly(WindowState)            });        return WindowState;    }    /**     * DOCUMENT ME!     *     * @param pBackgroundPalette DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setBackgroundPalette(Int32 /*[in]*/ pBackgroundPalette)        throws ComException {        invokeStandardVirtualMethod(17, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pBackgroundPalette });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getBackgroundPalette() throws ComException {        Int32 pBackgroundPalette = new Int32();        invokeStandardVirtualMethod(18, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pBackgroundPalette == null) ? (Parameter) PTR_NULL                                             : new Pointer.OutOnly(                    pBackgroundPalette)            });        return pBackgroundPalette;    }    /**     * DOCUMENT ME!     *     * @param pVisible DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setVisible(Int32 /*[in]*/ pVisible) throws ComException {        invokeStandardVirtualMethod(19, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pVisible });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getVisible() throws ComException {        Int32 pVisible = new Int32();        invokeStandardVirtualMethod(20, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pVisible == null) ? (Parameter) PTR_NULL                                   : new Pointer.OutOnly(pVisible)            });        return pVisible;    }    /**     * DOCUMENT ME!     *     * @param pLeft DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setLeft(Int32 /*[in]*/ pLeft) throws ComException {        invokeStandardVirtualMethod(21, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pLeft });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getLeft() throws ComException {        Int32 pLeft = new Int32();        invokeStandardVirtualMethod(22, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pLeft == null) ? (Parameter) PTR_NULL                                : new Pointer.OutOnly(pLeft)            });        return pLeft;    }    /**     * DOCUMENT ME!     *     * @param pWidth DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public void setWidth(Int32 /*[in]*/ pWidth) throws ComException {        invokeStandardVirtualMethod(23, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] { pWidth });    }    /**     * DOCUMENT ME!     *     * @return DOCUMENT ME!     *     * @throws ComException DOCUMENT ME!     */    public Int32 getWidth() throws ComException {        Int32 pWidth = new Int32();        invokeStandardVirtualMethod(24, Function.STDCALL_CALLING_CONVENTION,            new Parameter[] {                (pWidth == null) ? (Parameter) PTR_NULL

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -