Avoid potential negative array index access to cached text.
[LibreOffice.git] / vcl / inc / salsession.hxx
blobfb9763bb68822711f1d62917052365f536b60998
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_INC_SALSESSION_HXX
21 #define INCLUDED_VCL_INC_SALSESSION_HXX
23 #include <vcl/dllapi.h>
25 enum SalSessionEventType
27 Interaction,
28 SaveRequest,
29 ShutdownCancel,
30 Quit
33 struct SalSessionEvent
35 SalSessionEventType m_eType;
37 SalSessionEvent( SalSessionEventType eType )
38 : m_eType( eType )
42 struct SalSessionInteractionEvent : public SalSessionEvent
44 bool m_bInteractionGranted;
46 SalSessionInteractionEvent( bool bGranted )
47 : SalSessionEvent( Interaction ),
48 m_bInteractionGranted( bGranted )
52 struct SalSessionSaveRequestEvent : public SalSessionEvent
54 bool m_bShutdown;
56 SalSessionSaveRequestEvent( bool bShutdown )
57 : SalSessionEvent( SaveRequest ),
58 m_bShutdown( bShutdown )
62 struct SalSessionShutdownCancelEvent : public SalSessionEvent
64 SalSessionShutdownCancelEvent()
65 : SalSessionEvent( ShutdownCancel )
69 struct SalSessionQuitEvent : public SalSessionEvent
71 SalSessionQuitEvent()
72 : SalSessionEvent( Quit )
76 typedef void(*SessionProc)(void *pData, SalSessionEvent *pEvent);
78 class VCL_PLUGIN_PUBLIC SalSession
80 SessionProc m_aProc;
81 void * m_pProcData;
82 public:
83 SalSession()
84 : m_aProc(nullptr)
85 , m_pProcData(nullptr)
88 virtual ~SalSession();
90 void SetCallback( SessionProc aCallback, void * pCallbackData )
92 m_aProc = aCallback;
93 m_pProcData = pCallbackData;
95 void CallCallback( SalSessionEvent* pEvent )
97 if( m_aProc )
98 m_aProc( m_pProcData, pEvent );
101 // query the session manager for a user interaction slot
102 virtual void queryInteraction() = 0;
103 // signal the session manager that we're done with user interaction
104 virtual void interactionDone() = 0;
105 // signal that we're done saving
106 virtual void saveDone() = 0;
107 // try to cancel the shutdown in progress
108 virtual bool cancelShutdown() = 0;
111 #endif // INCLUDED_VCL_INC_SALSESSION_HXX
113 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */