97 lines
3.1 KiB
C++
97 lines
3.1 KiB
C++
/* -*- 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 PROPSHEETS_HXX_INCLUDED
|
|
#define PROPSHEETS_HXX_INCLUDED
|
|
|
|
#include "internal/metainforeader.hxx"
|
|
|
|
#if defined _MSC_VER
|
|
#pragma warning(push, 1)
|
|
#endif
|
|
#include <shlobj.h>
|
|
#if defined _MSC_VER
|
|
#pragma warning(pop)
|
|
#endif
|
|
#include <string>
|
|
#include <memory>
|
|
|
|
class CPropertySheet : public IShellExtInit, public IShellPropSheetExt
|
|
{
|
|
public:
|
|
CPropertySheet(long RefCnt = 1);
|
|
|
|
virtual ~CPropertySheet();
|
|
|
|
//-----------------------------
|
|
// IUnknown methods
|
|
//-----------------------------
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE QueryInterface(
|
|
REFIID riid,
|
|
void __RPC_FAR *__RPC_FAR *ppvObject);
|
|
|
|
virtual ULONG STDMETHODCALLTYPE AddRef( void);
|
|
|
|
virtual ULONG STDMETHODCALLTYPE Release( void);
|
|
|
|
//-----------------------------
|
|
// IShellExtInit
|
|
//-----------------------------
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE Initialize(
|
|
LPCITEMIDLIST pidlFolder, LPDATAOBJECT lpdobj, HKEY hkeyProgID);
|
|
|
|
//-----------------------------
|
|
// IShellPropSheetExt
|
|
//-----------------------------
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE AddPages(LPFNADDPROPSHEETPAGE lpfnAddPage, LPARAM lParam);
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE ReplacePage(
|
|
UINT uPageID, LPFNADDPROPSHEETPAGE lpfnReplaceWith, LPARAM lParam);
|
|
|
|
private:
|
|
// Windows callback functions
|
|
static UINT CALLBACK PropPageSummaryCallback(HWND hwnd, UINT uMsg, LPPROPSHEETPAGE ppsp);
|
|
static BOOL CALLBACK PropPageSummaryProc(HWND hwnd, UINT uiMsg, WPARAM wParam, LPARAM lParam);
|
|
static BOOL CALLBACK PropPageStatisticsProc(HWND hwnd, UINT uiMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
// Helper functions
|
|
void InitPropPageSummary(HWND hwnd, LPPROPSHEETPAGE lppsp);
|
|
void InitPropPageStatistics(HWND hwnd, LPPROPSHEETPAGE lppsp);
|
|
|
|
private:
|
|
long m_RefCnt;
|
|
char m_szFileName[MAX_PATH];
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|