diff options
Diffstat (limited to 'vcl/inc/unx/gtk/gtkdata.hxx')
-rw-r--r-- | vcl/inc/unx/gtk/gtkdata.hxx | 127 |
1 files changed, 0 insertions, 127 deletions
diff --git a/vcl/inc/unx/gtk/gtkdata.hxx b/vcl/inc/unx/gtk/gtkdata.hxx deleted file mode 100644 index 95348f4a1c..0000000000 --- a/vcl/inc/unx/gtk/gtkdata.hxx +++ /dev/null @@ -1,127 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * 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. - * - * 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). - * - * 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. - * - ************************************************************************/ - -#ifndef _VCL_GTKDATA_HXX -#define _VCL_GTKDATA_HXX - -#include <tools/prex.h> -#include <gdk/gdk.h> -#include <gdk/gdkx.h> -#include <gtk/gtk.h> -#include <tools/postx.h> - -#include <unx/saldisp.hxx> -#include <unx/saldata.hxx> -#include <vcl/ptrstyle.hxx> - -#include <list> - -inline GdkWindow * widget_get_window(GtkWidget *widget) -{ -#if GTK_CHECK_VERSION(3,0,0) - return gtk_widget_get_window(widget); -#else - return widget->window; -#endif -} - -inline void widget_set_can_focus(GtkWidget *widget, gboolean can_focus) -{ -#if GTK_CHECK_VERSION(3,0,0) - return gtk_widget_set_can_focus(widget, can_focus); -#else - if (can_focus) - GTK_WIDGET_SET_FLAGS( widget, GTK_CAN_FOCUS ); - else - GTK_WIDGET_UNSET_FLAGS( widget, GTK_CAN_FOCUS ); -#endif -} - -inline void widget_set_can_default(GtkWidget *widget, gboolean can_default) -{ -#if GTK_CHECK_VERSION(3,0,0) - return gtk_widget_set_can_default(widget, can_default); -#else - if (can_default) - GTK_WIDGET_SET_FLAGS( widget, GTK_CAN_DEFAULT ); - else - GTK_WIDGET_UNSET_FLAGS( widget, GTK_CAN_DEFAULT ); -#endif -} - -class GtkData : public X11SalData -{ -public: - GtkData() {} - virtual ~GtkData(); - - virtual void Init(); - - virtual void initNWF(); - virtual void deInitNWF(); -}; - -class GtkSalFrame; - -class GtkSalDisplay : public SalDisplay -{ - GdkDisplay* m_pGdkDisplay; - GdkCursor *m_aCursors[ POINTER_COUNT ]; - bool m_bStartupCompleted; - - GdkCursor* getFromXBM( const unsigned char *pBitmap, const unsigned char *pMask, - int nWidth, int nHeight, int nXHot, int nYHot ); -public: - GtkSalDisplay( GdkDisplay* pDisplay ); - virtual ~GtkSalDisplay(); - - GdkDisplay* GetGdkDisplay() const { return m_pGdkDisplay; } - - virtual void deregisterFrame( SalFrame* pFrame ); - GdkCursor *getCursor( PointerStyle ePointerStyle ); - virtual int CaptureMouse( SalFrame* pFrame ); - virtual long Dispatch( XEvent *pEvent ); - virtual void initScreen( int nScreen ) const; - - virtual int GetDefaultMonitorNumber() const; - - GdkFilterReturn filterGdkEvent( GdkXEvent* sys_event, - GdkEvent* event ); - inline bool HasMoreEvents() { return m_aUserEvents.size() > 1; } - inline void EventGuardAcquire() { osl_acquireMutex( hEventGuard_ ); } - inline void EventGuardRelease() { osl_releaseMutex( hEventGuard_ ); } - void startupNotificationCompleted() { m_bStartupCompleted = true; } - - void screenSizeChanged( GdkScreen* ); - void monitorsChanged( GdkScreen* ); -}; - - -#endif // _VCL_GTKDATA_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |