2010-10-14 01:27:31 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2007-04-11 12:09:49 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 01:58:21 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2007-04-11 12:09:49 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2007-04-11 12:09:49 -05:00
|
|
|
*
|
2008-04-11 01:58:21 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2007-04-11 12:09:49 -05:00
|
|
|
*
|
2008-04-11 01:58:21 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2007-04-11 12:09:49 -05:00
|
|
|
*
|
2008-04-11 01:58:21 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2007-04-11 12:09:49 -05:00
|
|
|
*
|
2008-04-11 01:58:21 -05:00
|
|
|
* OpenOffice.org 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 Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2007-04-11 12:09:49 -05:00
|
|
|
*
|
2008-04-11 01:58:21 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2007-04-11 12:09:49 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SV_SALWTYPE_HXX
|
|
|
|
#define _SV_SALWTYPE_HXX
|
|
|
|
|
|
|
|
#include <i18npool/lang.h>
|
|
|
|
#include <tools/string.hxx>
|
|
|
|
#include <vcl/sv.h>
|
|
|
|
|
|
|
|
class SalGraphics;
|
|
|
|
class SalFrame;
|
|
|
|
class SalObject;
|
2007-10-09 09:18:22 -05:00
|
|
|
class Window;
|
2007-04-11 12:09:49 -05:00
|
|
|
|
2011-10-27 10:08:14 -05:00
|
|
|
class FontSelectPattern;
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
// ---------------
|
|
|
|
// - SalExtInput -
|
|
|
|
// ---------------
|
|
|
|
|
|
|
|
// Muessen mit den Defines in cmdevt.hxx uebereinstimmen, da diese
|
|
|
|
// nicht konvertiert werden
|
2010-09-29 02:46:40 -05:00
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_GRAYWAVELINE ((sal_uInt16)0x0100)
|
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_UNDERLINE ((sal_uInt16)0x0200)
|
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_BOLDUNDERLINE ((sal_uInt16)0x0400)
|
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_DOTTEDUNDERLINE ((sal_uInt16)0x0800)
|
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_DASHDOTUNDERLINE ((sal_uInt16)0x1000)
|
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_HIGHLIGHT ((sal_uInt16)0x2000)
|
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_REDTEXT ((sal_uInt16)0x4000)
|
|
|
|
#define SAL_EXTTEXTINPUT_ATTR_HALFTONETEXT ((sal_uInt16)0x8000)
|
|
|
|
|
|
|
|
#define SAL_EXTTEXTINPUT_CURSOR_INVISIBLE ((sal_uInt16)0x0001)
|
|
|
|
#define SAL_EXTTEXTINPUT_CURSOR_OVERWRITE ((sal_uInt16)0x0002)
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
// ------------
|
|
|
|
// - SalEvent -
|
|
|
|
// ------------
|
|
|
|
|
2010-09-29 02:46:40 -05:00
|
|
|
#define SALEVENT_MOUSEMOVE ((sal_uInt16)1)
|
|
|
|
#define SALEVENT_MOUSELEAVE ((sal_uInt16)2)
|
|
|
|
#define SALEVENT_MOUSEBUTTONDOWN ((sal_uInt16)3)
|
|
|
|
#define SALEVENT_MOUSEBUTTONUP ((sal_uInt16)4)
|
|
|
|
#define SALEVENT_KEYINPUT ((sal_uInt16)5)
|
|
|
|
#define SALEVENT_KEYUP ((sal_uInt16)6)
|
|
|
|
#define SALEVENT_KEYMODCHANGE ((sal_uInt16)7)
|
|
|
|
#define SALEVENT_PAINT ((sal_uInt16)8)
|
|
|
|
#define SALEVENT_RESIZE ((sal_uInt16)9)
|
|
|
|
#define SALEVENT_GETFOCUS ((sal_uInt16)10)
|
|
|
|
#define SALEVENT_LOSEFOCUS ((sal_uInt16)11)
|
|
|
|
#define SALEVENT_CLOSE ((sal_uInt16)12)
|
|
|
|
#define SALEVENT_SHUTDOWN ((sal_uInt16)13)
|
|
|
|
#define SALEVENT_SETTINGSCHANGED ((sal_uInt16)14)
|
|
|
|
#define SALEVENT_VOLUMECHANGED ((sal_uInt16)15)
|
|
|
|
#define SALEVENT_PRINTERCHANGED ((sal_uInt16)16)
|
|
|
|
#define SALEVENT_DISPLAYCHANGED ((sal_uInt16)17)
|
|
|
|
#define SALEVENT_FONTCHANGED ((sal_uInt16)18)
|
|
|
|
#define SALEVENT_DATETIMECHANGED ((sal_uInt16)19)
|
|
|
|
#define SALEVENT_KEYBOARDCHANGED ((sal_uInt16)20)
|
|
|
|
#define SALEVENT_WHEELMOUSE ((sal_uInt16)21)
|
|
|
|
#define SALEVENT_USEREVENT ((sal_uInt16)22)
|
|
|
|
#define SALEVENT_MOUSEACTIVATE ((sal_uInt16)23)
|
|
|
|
#define SALEVENT_EXTTEXTINPUT ((sal_uInt16)24)
|
|
|
|
#define SALEVENT_ENDEXTTEXTINPUT ((sal_uInt16)25)
|
|
|
|
#define SALEVENT_EXTTEXTINPUTPOS ((sal_uInt16)26)
|
|
|
|
#define SALEVENT_INPUTCONTEXTCHANGE ((sal_uInt16)27)
|
|
|
|
#define SALEVENT_MOVE ((sal_uInt16)28)
|
|
|
|
#define SALEVENT_MOVERESIZE ((sal_uInt16)29)
|
|
|
|
#define SALEVENT_CLOSEPOPUPS ((sal_uInt16)30)
|
|
|
|
#define SALEVENT_EXTERNALKEYINPUT ((sal_uInt16)31)
|
|
|
|
#define SALEVENT_EXTERNALKEYUP ((sal_uInt16)32)
|
|
|
|
#define SALEVENT_MENUCOMMAND ((sal_uInt16)33)
|
|
|
|
#define SALEVENT_MENUHIGHLIGHT ((sal_uInt16)34)
|
|
|
|
#define SALEVENT_MENUACTIVATE ((sal_uInt16)35)
|
|
|
|
#define SALEVENT_MENUDEACTIVATE ((sal_uInt16)36)
|
|
|
|
#define SALEVENT_EXTERNALMOUSEMOVE ((sal_uInt16)37)
|
|
|
|
#define SALEVENT_EXTERNALMOUSEBUTTONDOWN ((sal_uInt16)38)
|
|
|
|
#define SALEVENT_EXTERNALMOUSEBUTTONUP ((sal_uInt16)39)
|
|
|
|
#define SALEVENT_INPUTLANGUAGECHANGE ((sal_uInt16)40)
|
|
|
|
#define SALEVENT_SHOWDIALOG ((sal_uInt16)41)
|
|
|
|
#define SALEVENT_MENUBUTTONCOMMAND ((sal_uInt16)42)
|
|
|
|
#define SALEVENT_SURROUNDINGTEXTREQUEST ((sal_uInt16)43)
|
|
|
|
#define SALEVENT_SURROUNDINGTEXTSELECTIONCHANGE ((sal_uInt16)44)
|
|
|
|
#define SALEVENT_STARTRECONVERSION ((sal_uInt16)45)
|
|
|
|
#define SALEVENT_COUNT ((sal_uInt16)45)
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
// MOUSELEAVE must send, when the pointer leave the client area and
|
|
|
|
// the mouse is not captured
|
|
|
|
// MOUSEMOVE, MOUSELEAVE, MOUSEBUTTONDOWN and MOUSEBUTTONUP
|
|
|
|
// MAC: Ctrl+Button is MOUSE_RIGHT
|
|
|
|
struct SalMouseEvent
|
|
|
|
{
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnTime; // Time in ms, when event is created
|
2007-04-11 12:09:49 -05:00
|
|
|
long mnX; // X-Position (Pixel, TopLeft-Output)
|
|
|
|
long mnY; // Y-Position (Pixel, TopLeft-Output)
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt16 mnButton; // 0-MouseMove/MouseLeave, MOUSE_LEFT, MOUSE_RIGHT, MOUSE_MIDDLE
|
|
|
|
sal_uInt16 mnCode; // SV-ModifierCode (KEY_SHIFT | KEY_MOD1 | KEY_MOD2 | MOUSE_LEFT | MOUSE_MIDDLE | MOUSE_RIGHT)
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// KEYINPUT and KEYUP
|
|
|
|
struct SalKeyEvent
|
|
|
|
{
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnTime; // Time in ms, when event is created
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt16 mnCode; // SV-KeyCode (KEY_xxx | KEY_SHIFT | KEY_MOD1 | KEY_MOD2)
|
|
|
|
sal_uInt16 mnCharCode; // SV-CharCode
|
|
|
|
sal_uInt16 mnRepeat; // Repeat-Count (KeyInputs-1)
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// MENUEVENT
|
|
|
|
struct SalMenuEvent
|
|
|
|
{
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt16 mnId; // Menu item ID
|
2007-04-11 12:09:49 -05:00
|
|
|
void* mpMenu; // pointer to VCL menu (class Menu)
|
2008-08-18 07:30:26 -05:00
|
|
|
|
|
|
|
SalMenuEvent() : mnId( 0 ), mpMenu( NULL ) {}
|
2010-09-29 02:46:40 -05:00
|
|
|
SalMenuEvent( sal_uInt16 i_nId, void* i_pMenu )
|
2008-08-18 07:30:26 -05:00
|
|
|
: mnId( i_nId ), mpMenu( i_pMenu ) {}
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// KEYMODCHANGE
|
|
|
|
struct SalKeyModEvent
|
|
|
|
{
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnTime; // Time in ms, when event is created
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt16 mnCode; // SV-ModifierCode (KEY_SHIFT | KEY_MOD1 | KEY_MOD2)
|
|
|
|
sal_uInt16 mnModKeyCode; // extended Modifier (MODKEY_LEFT, MODKEY_RIGHT, MODKEY_PRESS, MODKEY_RELEASE)
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// PAINT
|
|
|
|
struct SalPaintEvent
|
|
|
|
{
|
2007-08-03 08:04:59 -05:00
|
|
|
long mnBoundX; // BoundRect - X
|
|
|
|
long mnBoundY; // BoundRect - Y
|
|
|
|
long mnBoundWidth; // BoundRect - Width
|
|
|
|
long mnBoundHeight; // BoundRect - Height
|
|
|
|
bool mbImmediateUpdate; // set to true to force an immediate update
|
|
|
|
|
|
|
|
SalPaintEvent( long x, long y, long w, long h, bool bImmediate = false ) :
|
|
|
|
mnBoundX( x ), mnBoundY( y ),
|
|
|
|
mnBoundWidth( w ), mnBoundHeight( h ),
|
|
|
|
mbImmediateUpdate( bImmediate )
|
|
|
|
{}
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// USEREVENT
|
|
|
|
// pEvent == pData
|
|
|
|
|
|
|
|
// WHEELMOUSE
|
2011-01-12 08:07:10 -06:00
|
|
|
#define SAL_WHEELMOUSE_EVENT_PAGESCROLL ((sal_uLong)0xFFFFFFFF)
|
2007-04-11 12:09:49 -05:00
|
|
|
struct SalWheelMouseEvent
|
|
|
|
{
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnTime; // Time in ms, when event is created
|
2007-04-11 12:09:49 -05:00
|
|
|
long mnX; // X-Position (Pixel, TopLeft-Output)
|
|
|
|
long mnY; // Y-Position (Pixel, TopLeft-Output)
|
|
|
|
long mnDelta; // Anzahl Drehungen
|
|
|
|
long mnNotchDelta; // Anzahl feste Drehungen
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnScrollLines; // Aktuelle Anzahl zu scrollende Zeilen
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt16 mnCode; // SV-ModifierCode (KEY_SHIFT | KEY_MOD1 | KEY_MOD2 | MOUSE_LEFT | MOUSE_MIDDLE | MOUSE_RIGHT)
|
|
|
|
sal_Bool mbHorz; // Horizontal
|
|
|
|
sal_Bool mbDeltaIsPixel; // delta value is a pixel value (on mac)
|
2010-02-26 13:50:25 -06:00
|
|
|
|
|
|
|
SalWheelMouseEvent()
|
2010-09-29 02:46:40 -05:00
|
|
|
: mnTime( 0 ), mnX( 0 ), mnY( 0 ), mnDelta( 0 ), mnNotchDelta( 0 ), mnScrollLines( 0 ), mnCode( 0 ), mbHorz( sal_False ), mbDeltaIsPixel( sal_False )
|
2010-02-26 13:50:25 -06:00
|
|
|
{}
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// MOUSEACTIVATE
|
|
|
|
struct SalMouseActivateEvent
|
|
|
|
{
|
|
|
|
long mnX; // X-Position (Pixel, TopLeft-Output)
|
|
|
|
long mnY; // Y-Position (Pixel, TopLeft-Output)
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
// EXTTEXTINPUT
|
|
|
|
struct SalExtTextInputEvent
|
|
|
|
{
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnTime; // Time in ms, when event is created
|
2007-04-11 12:09:49 -05:00
|
|
|
UniString maText; // Text
|
2010-09-29 02:46:40 -05:00
|
|
|
const sal_uInt16* mpTextAttr; // Text-Attribute
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnCursorPos; // Cursor-Position
|
|
|
|
sal_uLong mnDeltaStart; // Start-Position der letzten Aenderung
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt8 mnCursorFlags; // SAL_EXTTEXTINPUT_CURSOR_xxx
|
|
|
|
sal_Bool mbOnlyCursor; // sal_True: Nur Cursor-Position wurde geaendert
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
|
|
// EXTTEXTINPUTPOS
|
|
|
|
struct SalExtTextInputPosEvent
|
|
|
|
{
|
|
|
|
long mnX; // Cursor-X-Position to upper left corner of frame
|
|
|
|
long mnY; // Cursor-Y-Position to upper left corner of frame
|
|
|
|
long mnWidth; // Cursor-Width in Pixel
|
|
|
|
long mnHeight; // Cursor-Height in Pixel
|
|
|
|
long mnExtWidth; // Width of the PreEdit area
|
|
|
|
bool mbVertical; // true if in vertical mode
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
// INPUTCONTEXTCHANGE
|
|
|
|
struct SalInputContextChangeEvent
|
|
|
|
{
|
|
|
|
LanguageType meLanguage; // Neue Sprache
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
2008-10-29 04:25:50 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
// SURROUNDINGTEXTREQUEST
|
|
|
|
struct SalSurroundingTextRequestEvent
|
|
|
|
{
|
|
|
|
UniString maText; // Text
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnStart; // The beggining index of selected range
|
|
|
|
sal_uLong mnEnd; // The end index of selected range
|
2008-10-29 04:25:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
// SURROUNDINGTEXTSELECTIONCHANGE
|
|
|
|
struct SalSurroundingTextSelectionChangeEvent
|
|
|
|
{
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnStart; // The beggining index of selected range
|
|
|
|
sal_uLong mnEnd; // The end index of selected range
|
2008-10-29 04:25:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
2007-04-11 12:09:49 -05:00
|
|
|
// ------------------
|
|
|
|
// - SalFrame-Types -
|
|
|
|
// ------------------
|
|
|
|
|
2007-10-09 09:18:22 -05:00
|
|
|
typedef long (*SALFRAMEPROC)( Window* pInst, SalFrame* pFrame,
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt16 nEvent, const void* pEvent );
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
// --------------------
|
|
|
|
// - SalObject-Events -
|
|
|
|
// --------------------
|
|
|
|
|
2010-09-29 02:46:40 -05:00
|
|
|
#define SALOBJ_EVENT_GETFOCUS ((sal_uInt16)1)
|
|
|
|
#define SALOBJ_EVENT_LOSEFOCUS ((sal_uInt16)2)
|
|
|
|
#define SALOBJ_EVENT_TOTOP ((sal_uInt16)3)
|
|
|
|
#define SALOBJ_EVENT_COUNT ((sal_uInt16)4)
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
// ------------------
|
|
|
|
// - SalObject-Types -
|
|
|
|
// ------------------
|
|
|
|
|
|
|
|
typedef long (*SALOBJECTPROC)( void* pInst, SalObject* pObject,
|
2010-09-29 02:46:40 -05:00
|
|
|
sal_uInt16 nEvent, const void* pEvent );
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
// -----------------
|
|
|
|
// - SalFrameState -
|
|
|
|
// -----------------
|
|
|
|
|
|
|
|
// Must be the same as in syswin.hxx
|
2011-01-12 08:07:10 -06:00
|
|
|
#define SAL_FRAMESTATE_MASK_X ((sal_uLong)0x00000001)
|
|
|
|
#define SAL_FRAMESTATE_MASK_Y ((sal_uLong)0x00000002)
|
|
|
|
#define SAL_FRAMESTATE_MASK_WIDTH ((sal_uLong)0x00000004)
|
|
|
|
#define SAL_FRAMESTATE_MASK_HEIGHT ((sal_uLong)0x00000008)
|
|
|
|
#define SAL_FRAMESTATE_MASK_MAXIMIZED_X ((sal_uLong)0x00000100)
|
|
|
|
#define SAL_FRAMESTATE_MASK_MAXIMIZED_Y ((sal_uLong)0x00000200)
|
|
|
|
#define SAL_FRAMESTATE_MASK_MAXIMIZED_WIDTH ((sal_uLong)0x00000400)
|
|
|
|
#define SAL_FRAMESTATE_MASK_MAXIMIZED_HEIGHT ((sal_uLong)0x00000800)
|
|
|
|
#define SAL_FRAMESTATE_MASK_STATE ((sal_uLong)0x00000010)
|
|
|
|
|
|
|
|
#define SAL_FRAMESTATE_NORMAL ((sal_uLong)0x00000001)
|
|
|
|
#define SAL_FRAMESTATE_MINIMIZED ((sal_uLong)0x00000002)
|
|
|
|
#define SAL_FRAMESTATE_MAXIMIZED ((sal_uLong)0x00000004)
|
|
|
|
#define SAL_FRAMESTATE_ROLLUP ((sal_uLong)0x00000008)
|
|
|
|
#define SAL_FRAMESTATE_MAXIMIZED_HORZ ((sal_uLong)0x00000010)
|
|
|
|
#define SAL_FRAMESTATE_MAXIMIZED_VERT ((sal_uLong)0x00000020)
|
|
|
|
#define SAL_FRAMESTATE_SYSTEMMASK ((sal_uLong)0x0000FFFF)
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
struct SalFrameState
|
|
|
|
{
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnMask;
|
2007-04-11 12:09:49 -05:00
|
|
|
long mnX;
|
|
|
|
long mnY;
|
|
|
|
long mnWidth;
|
|
|
|
long mnHeight;
|
|
|
|
long mnMaximizedX;
|
|
|
|
long mnMaximizedY;
|
|
|
|
long mnMaximizedWidth;
|
|
|
|
long mnMaximizedHeight;
|
2011-01-12 08:07:10 -06:00
|
|
|
sal_uLong mnState;
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// -------------------
|
|
|
|
// - SalInputContext -
|
|
|
|
// -------------------
|
|
|
|
|
|
|
|
// Muessen mit den Defines in inputctx.hxx uebereinstimmen, da diese
|
|
|
|
// nicht konvertiert werden
|
2011-01-12 08:07:10 -06:00
|
|
|
#define SAL_INPUTCONTEXT_TEXT ((sal_uLong)0x00000001)
|
|
|
|
#define SAL_INPUTCONTEXT_EXTTEXTINPUT ((sal_uLong)0x00000002)
|
|
|
|
#define SAL_INPUTCONTEXT_EXTTEXTINPUT_ON ((sal_uLong)0x00000004)
|
|
|
|
#define SAL_INPUTCONTEXT_EXTTEXTINPUT_OFF ((sal_uLong)0x00000008)
|
|
|
|
#define SAL_INPUTCONTEXT_CHANGELANGUAGE ((sal_uLong)0x00000010)
|
2007-04-11 12:09:49 -05:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
struct SalInputContext
|
|
|
|
{
|
2011-10-27 10:08:14 -05:00
|
|
|
FontSelectPattern* mpFont;
|
|
|
|
LanguageType meLanguage;
|
|
|
|
sal_uLong mnOptions;
|
2007-04-11 12:09:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __cplusplus
|
|
|
|
|
|
|
|
// ------------------
|
|
|
|
// - SalTimer-Types -
|
|
|
|
// ------------------
|
|
|
|
|
|
|
|
typedef void (*SALTIMERPROC)();
|
|
|
|
|
|
|
|
#endif // _SV_SALWTYPE_HXX
|
2010-10-14 01:27:31 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|