blob: d66c4e6343c7b316eb6263c628d87712c2353b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_FILE_VERSION_INFO_MAC_H_
#define BASE_FILE_VERSION_INFO_MAC_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/file_version_info.h"
#include "base/scoped_ptr.h"
#ifdef __OBJC__
@class NSBundle;
#else
class NSBundle;
#endif
// Provides a way to access the version information for a file.
// This is the information you access when you select a file in the Windows
// explorer, right-click select Properties, then click the Version tab.
class FileVersionInfoMac : public FileVersionInfo {
public:
explicit FileVersionInfoMac(NSBundle *bundle);
~FileVersionInfoMac();
// Accessors to the different version properties.
// Returns an empty string if the property is not found.
virtual std::wstring company_name();
virtual std::wstring company_short_name();
virtual std::wstring product_name();
virtual std::wstring product_short_name();
virtual std::wstring internal_name();
virtual std::wstring product_version();
virtual std::wstring private_build();
virtual std::wstring special_build();
virtual std::wstring comments();
virtual std::wstring original_filename();
virtual std::wstring file_description();
virtual std::wstring file_version();
virtual std::wstring legal_copyright();
virtual std::wstring legal_trademarks();
virtual std::wstring last_change();
virtual bool is_official_build();
private:
// Lets you access other properties not covered above.
bool GetValue(const wchar_t* name, std::wstring* value);
// Similar to GetValue but returns a wstring (empty string if the property
// does not exist).
std::wstring GetStringValue(const wchar_t* name);
NSBundle *bundle_;
DISALLOW_COPY_AND_ASSIGN(FileVersionInfoMac);
};
#endif // BASE_FILE_VERSION_INFO_MAC_H_
|