~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/composer/app/module.rc

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// ***** BEGIN LICENSE BLOCK *****
 
3
// Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
4
//
 
5
// The contents of this file are subject to the Mozilla Public License Version
 
6
// 1.1 (the "License"); you may not use this file except in compliance with
 
7
// the License. You may obtain a copy of the License at
 
8
// http://www.mozilla.org/MPL/
 
9
//
 
10
// Software distributed under the License is distributed on an "AS IS" basis,
 
11
// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
// for the specific language governing rights and limitations under the
 
13
// License.
 
14
//
 
15
// The Original Code is the Win32 Version System.
 
16
//
 
17
// The Initial Developer of the Original Code is Brian Bober <netdemonz@yahoo.com>
 
18
// Portions created by the Initial Developer are Copyright (C) 2001
 
19
// the Initial Developer. All Rights Reserved.
 
20
//
 
21
// Contributor(s):
 
22
//
 
23
// Alternatively, the contents of this file may be used under the terms of
 
24
// either the GNU General Public License Version 2 or later (the "GPL"), or
 
25
// the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
26
// in which case the provisions of the GPL or the LGPL are applicable instead
 
27
// of those above. If you wish to allow use of your version of this file only
 
28
// under the terms of either the GPL or the LGPL, and not to allow others to
 
29
// use your version of this file under the terms of the MPL, indicate your
 
30
// decision by deleting the provisions above and replace them with the notice
 
31
// and other provisions required by the GPL or the LGPL. If you do not delete
 
32
// the provisions above, a recipient may use your version of this file under
 
33
// the terms of any one of the MPL, the GPL or the LGPL.
 
34
//
 
35
// ***** END LICENSE BLOCK *****
 
36
 
 
37
#include<winver.h>
 
38
 
 
39
// Note: if you contain versioning information in an included 
 
40
// RC script, it will be discarded
 
41
// Use module.ver to explicitly set these values
 
42
 
 
43
// Do not edit this file. Changes won't affect the build.
 
44
 
 
45
// From included resource ./splash.rc
 
46
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
47
/* ***** BEGIN LICENSE BLOCK *****
 
48
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
49
 *
 
50
 * The contents of this file are subject to the Netscape Public License
 
51
 * Version 1.1 (the "License"); you may not use this file except in
 
52
 * compliance with the License. You may obtain a copy of the License at
 
53
 * http://www.mozilla.org/NPL/
 
54
 *
 
55
 * Software distributed under the License is distributed on an "AS IS" basis,
 
56
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
57
 * for the specific language governing rights and limitations under the
 
58
 * License.
 
59
 *
 
60
 * The Original Code is Mozilla Communicator client code.
 
61
 *
 
62
 * The Initial Developer of the Original Code is 
 
63
 * Netscape Communications Corporation.
 
64
 * Portions created by the Initial Developer are Copyright (C) 1998
 
65
 * the Initial Developer. All Rights Reserved.
 
66
 *
 
67
 * Contributor(s):
 
68
 *   Bill Law       law@netscape.com
 
69
 *
 
70
 * Alternatively, the contents of this file may be used under the terms of
 
71
 * either the GNU General Public License Version 2 or later (the "GPL"), or 
 
72
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
73
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
74
 * of those above. If you wish to allow use of your version of this file only
 
75
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
76
 * use your version of this file under the terms of the NPL, indicate your
 
77
 * decision by deleting the provisions above and replace them with the notice
 
78
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
79
 * the provisions above, a recipient may use your version of this file under
 
80
 * the terms of any one of the NPL, the GPL or the LGPL.
 
81
 *
 
82
 * ***** END LICENSE BLOCK ***** */
 
83
#include <windows.h>
 
84
#include "nsINativeAppSupportWin.h"
 
85
 
 
86
1 24 "kompozer.exe.manifest" 
 
87
 
 
88
// Splash screen dialog ID.
 
89
#define IDD_SPLASH  100
 
90
 
 
91
// Splash screen bitmap ID.
 
92
#define IDB_SPLASH  101
 
93
 
 
94
// DDE application name
 
95
#define ID_DDE_APPLICATION_NAME 102
 
96
 
 
97
// Program icon.
 
98
IDI_APPLICATION ICON
 
99
        "mozilla.ico"
 
100
 
 
101
// Splash screen dialog.
 
102
IDD_SPLASH DIALOGEX
 
103
        DISCARDABLE
 
104
        0,0,0,0
 
105
        STYLE DS_SETFOREGROUND | DS_CENTER | WS_POPUP
 
106
    EXSTYLE WS_EX_TOOLWINDOW
 
107
        FONT 8, "MS Sans Serif"
 
108
        BEGIN
 
109
                CONTROL
 
110
#ifndef __MINGW32__
 
111
            IDB_SPLASH,
 
112
#endif
 
113
                        IDB_SPLASH,
 
114
                        "Static",
 
115
                        SS_BITMAP,
 
116
                        0,0,0,0
 
117
        END
 
118
 
 
119
// Splash screen bitmap.
 
120
//IDB_SPLASH BITMAP
 
121
//      "splash.bmp"
 
122
 
 
123
STRINGTABLE DISCARDABLE
 
124
BEGIN
 
125
    ID_DDE_APPLICATION_NAME,            "KompoZer"
 
126
    IDS_STARTMENU_APPNAME,              "KompoZer"
 
127
END
 
128
 
 
129
 
 
130
 
 
131
/////////////////////////////////////////////////////////////////////////////
 
132
//
 
133
// Version
 
134
//
 
135
 
 
136
1 VERSIONINFO
 
137
 FILEVERSION 0,0,0,0
 
138
 PRODUCTVERSION 0,0,0,0
 
139
 FILEFLAGSMASK 0x3fL
 
140
 FILEFLAGS VS_FF_PRIVATEBUILD
 
141
 FILEOS VOS__WINDOWS32
 
142
 FILETYPE VFT_DLL
 
143
 FILESUBTYPE 0x0L
 
144
BEGIN
 
145
    BLOCK "StringFileInfo"
 
146
    BEGIN
 
147
        BLOCK "000004b0"
 
148
        BEGIN
 
149
            VALUE "Comments", ""
 
150
            VALUE "LegalCopyright", "License: MPL 1.1/GPL 2.0/LGPL 2.1"
 
151
            VALUE "CompanyName", "Mozilla Foundation"
 
152
            VALUE "FileDescription", "Composer"
 
153
            VALUE "FileVersion", "Personal"
 
154
            VALUE "ProductVersion", "Personal"
 
155
            VALUE "InternalName", ""
 
156
            VALUE "LegalTrademarks", "Mozilla"
 
157
            VALUE "OriginalFilename", "kompozer.exe"
 
158
 
 
159
            VALUE "PrivateBuild", ""
 
160
 
 
161
            VALUE "ProductName", "Composer"
 
162
        END
 
163
    END
 
164
    BLOCK "VarFileInfo"
 
165
    BEGIN
 
166
        VALUE "Translation", 0x0, 1200
 
167
    END
 
168
END
 
169