Adding the auto completing text field. Upping the version to 0.2.6.

This commit is contained in:
hyatt%netscape.com 2002-04-27 07:11:05 +00:00
Родитель 62b7e37455
Коммит 4b729e3776
34 изменённых файлов: 368 добавлений и 38 удалений

1
camino/BrowserWindow.nib/classes.nib сгенерированный
Просмотреть файл

@ -64,6 +64,7 @@
};
SUPERCLASS = NSWindowController;
},
{CLASS = CHAutoCompleteTextField; LANGUAGE = ObjC; SUPERCLASS = NSTextField; },
{CLASS = CHBookmarksToolbar; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{CLASS = CHExtendedOutlineView; LANGUAGE = ObjC; SUPERCLASS = NSOutlineView; },
{CLASS = CHExtendedTabView; LANGUAGE = ObjC; SUPERCLASS = NSTabView; },

4
camino/BrowserWindow.nib/info.nib сгенерированный
Просмотреть файл

@ -25,7 +25,7 @@
<key>463</key>
<string>7 444 200 252 0 0 1152 746 </string>
<key>56</key>
<string>319 496 343 68 0 0 1152 746 </string>
<string>404 484 343 68 0 0 1152 746 </string>
</dict>
<key>IBFramework Version</key>
<string>248.0</string>
@ -46,10 +46,8 @@
<key>IBOpenObjects</key>
<array>
<integer>56</integer>
<integer>82</integer>
<integer>394</integer>
<integer>160</integer>
<integer>10</integer>
</array>
<key>IBSystem Version</key>
<string>5Q125</string>

Двоичные данные
camino/BrowserWindow.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -0,0 +1,30 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import <AppKit/AppKit.h>
@interface CHAutoCompleteTextField : NSTextField {
}
@end

Просмотреть файл

@ -0,0 +1,28 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import "CHAutoCompleteTextField.h"
@implementation CHAutoCompleteTextField
@end

Просмотреть файл

@ -21,6 +21,7 @@
F57074BA026BFD0101A80166,
F57074BE026D80DF01A80166,
F59E9F3F0237E43401A967DF,
F52D5CCC027A867601A80166,
);
isa = PBXGroup;
name = Classes;
@ -320,7 +321,7 @@
<key>CFBundleExecutable</key>
<string>Navigator</string>
<key>CFBundleGetInfoString</key>
<string>Navigator 0.2.5, © 2002 Mozilla</string>
<string>Navigator 0.2.6, © 2002 Mozilla</string>
<key>CFBundleIconFile</key>
<string>appicon.icns</string>
<key>CFBundleIdentifier</key>
@ -332,7 +333,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>Navigator 0.2.5</string>
<string>Navigator 0.2.6</string>
<key>CFBundleSignature</key>
<string>CHIM</string>
<key>CFBundleURLTypes</key>
@ -350,7 +351,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0.2.5</string>
<string>0.2.6</string>
<key>NSAppleScriptEnabled</key>
<true/>
<key>NSMainNibFile</key>
@ -391,6 +392,7 @@
F5C3AB830270072A01A80166,
F541495C02711A8301A80166,
F541496002711B0101A80166,
F52D5CCD027A867601A80166,
);
isa = PBXHeadersBuildPhase;
name = Headers;
@ -480,6 +482,7 @@
F5C3AB840270072A01A80166,
F541495D02711A8301A80166,
F541496102711B0101A80166,
F52D5CCE027A867601A80166,
);
isa = PBXSourcesBuildPhase;
name = Sources;
@ -878,6 +881,7 @@
F5607CB5023944AD01A967DF,
F59E9F3D0237E28401A967DF,
F5137A1102676B9101026D05,
F52D5CCB027A867601A80166,
);
isa = PBXGroup;
name = Headers;
@ -1362,6 +1366,28 @@
settings = {
};
};
F52D5CCB027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.h;
refType = 4;
};
F52D5CCC027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.mm;
refType = 4;
};
F52D5CCD027A867601A80166 = {
fileRef = F52D5CCB027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F52D5CCE027A867601A80166 = {
fileRef = F52D5CCC027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F538DFAE023B36A7010001CA = {
children = (
F538DFAF023B3739010001CA,

Просмотреть файл

@ -6,7 +6,7 @@
\f0\i\b\fs18 \cf0 \
\fs68 Navigator 0.2.5\
\fs68 Navigator 0.2.6\
\f1\b0\fs24 \
\
@ -17,7 +17,7 @@
\
\
\f2\i0 Navigator version 0.2.5\
\f2\i0 Navigator version 0.2.6\
http://www.mozilla.org\
http://chimera.mozdev.org\

1
camino/English.lproj/BrowserWindow.nib/classes.nib сгенерированный
Просмотреть файл

@ -64,6 +64,7 @@
};
SUPERCLASS = NSWindowController;
},
{CLASS = CHAutoCompleteTextField; LANGUAGE = ObjC; SUPERCLASS = NSTextField; },
{CLASS = CHBookmarksToolbar; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{CLASS = CHExtendedOutlineView; LANGUAGE = ObjC; SUPERCLASS = NSOutlineView; },
{CLASS = CHExtendedTabView; LANGUAGE = ObjC; SUPERCLASS = NSTabView; },

4
camino/English.lproj/BrowserWindow.nib/info.nib сгенерированный
Просмотреть файл

@ -25,7 +25,7 @@
<key>463</key>
<string>7 444 200 252 0 0 1152 746 </string>
<key>56</key>
<string>319 496 343 68 0 0 1152 746 </string>
<string>404 484 343 68 0 0 1152 746 </string>
</dict>
<key>IBFramework Version</key>
<string>248.0</string>
@ -46,10 +46,8 @@
<key>IBOpenObjects</key>
<array>
<integer>56</integer>
<integer>82</integer>
<integer>394</integer>
<integer>160</integer>
<integer>10</integer>
</array>
<key>IBSystem Version</key>
<string>5Q125</string>

Двоичные данные
camino/English.lproj/BrowserWindow.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -21,6 +21,7 @@
F57074BA026BFD0101A80166,
F57074BE026D80DF01A80166,
F59E9F3F0237E43401A967DF,
F52D5CCC027A867601A80166,
);
isa = PBXGroup;
name = Classes;
@ -320,7 +321,7 @@
<key>CFBundleExecutable</key>
<string>Navigator</string>
<key>CFBundleGetInfoString</key>
<string>Navigator 0.2.5, © 2002 Mozilla</string>
<string>Navigator 0.2.6, © 2002 Mozilla</string>
<key>CFBundleIconFile</key>
<string>appicon.icns</string>
<key>CFBundleIdentifier</key>
@ -332,7 +333,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>Navigator 0.2.5</string>
<string>Navigator 0.2.6</string>
<key>CFBundleSignature</key>
<string>CHIM</string>
<key>CFBundleURLTypes</key>
@ -350,7 +351,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0.2.5</string>
<string>0.2.6</string>
<key>NSAppleScriptEnabled</key>
<true/>
<key>NSMainNibFile</key>
@ -391,6 +392,7 @@
F5C3AB830270072A01A80166,
F541495C02711A8301A80166,
F541496002711B0101A80166,
F52D5CCD027A867601A80166,
);
isa = PBXHeadersBuildPhase;
name = Headers;
@ -480,6 +482,7 @@
F5C3AB840270072A01A80166,
F541495D02711A8301A80166,
F541496102711B0101A80166,
F52D5CCE027A867601A80166,
);
isa = PBXSourcesBuildPhase;
name = Sources;
@ -878,6 +881,7 @@
F5607CB5023944AD01A967DF,
F59E9F3D0237E28401A967DF,
F5137A1102676B9101026D05,
F52D5CCB027A867601A80166,
);
isa = PBXGroup;
name = Headers;
@ -1362,6 +1366,28 @@
settings = {
};
};
F52D5CCB027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.h;
refType = 4;
};
F52D5CCC027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.mm;
refType = 4;
};
F52D5CCD027A867601A80166 = {
fileRef = F52D5CCB027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F52D5CCE027A867601A80166 = {
fileRef = F52D5CCC027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F538DFAE023B36A7010001CA = {
children = (
F538DFAF023B3739010001CA,

Просмотреть файл

@ -6,7 +6,7 @@
\f0\i\b\fs18 \cf0 \
\fs68 Navigator 0.2.5\
\fs68 Navigator 0.2.6\
\f1\b0\fs24 \
\
@ -17,7 +17,7 @@
\
\
\f2\i0 Navigator version 0.2.5\
\f2\i0 Navigator version 0.2.6\
http://www.mozilla.org\
http://chimera.mozdev.org\

Просмотреть файл

@ -64,6 +64,7 @@
};
SUPERCLASS = NSWindowController;
},
{CLASS = CHAutoCompleteTextField; LANGUAGE = ObjC; SUPERCLASS = NSTextField; },
{CLASS = CHBookmarksToolbar; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{CLASS = CHExtendedOutlineView; LANGUAGE = ObjC; SUPERCLASS = NSOutlineView; },
{CLASS = CHExtendedTabView; LANGUAGE = ObjC; SUPERCLASS = NSTabView; },

Просмотреть файл

@ -25,7 +25,7 @@
<key>463</key>
<string>7 444 200 252 0 0 1152 746 </string>
<key>56</key>
<string>319 496 343 68 0 0 1152 746 </string>
<string>404 484 343 68 0 0 1152 746 </string>
</dict>
<key>IBFramework Version</key>
<string>248.0</string>
@ -46,10 +46,8 @@
<key>IBOpenObjects</key>
<array>
<integer>56</integer>
<integer>82</integer>
<integer>394</integer>
<integer>160</integer>
<integer>10</integer>
</array>
<key>IBSystem Version</key>
<string>5Q125</string>

Двоичные данные
camino/resources/localized/English.lproj/BrowserWindow.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -0,0 +1,30 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import <AppKit/AppKit.h>
@interface CHAutoCompleteTextField : NSTextField {
}
@end

Просмотреть файл

@ -0,0 +1,28 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import "CHAutoCompleteTextField.h"
@implementation CHAutoCompleteTextField
@end

1
chimera/BrowserWindow.nib/classes.nib сгенерированный
Просмотреть файл

@ -64,6 +64,7 @@
};
SUPERCLASS = NSWindowController;
},
{CLASS = CHAutoCompleteTextField; LANGUAGE = ObjC; SUPERCLASS = NSTextField; },
{CLASS = CHBookmarksToolbar; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{CLASS = CHExtendedOutlineView; LANGUAGE = ObjC; SUPERCLASS = NSOutlineView; },
{CLASS = CHExtendedTabView; LANGUAGE = ObjC; SUPERCLASS = NSTabView; },

4
chimera/BrowserWindow.nib/info.nib сгенерированный
Просмотреть файл

@ -25,7 +25,7 @@
<key>463</key>
<string>7 444 200 252 0 0 1152 746 </string>
<key>56</key>
<string>319 496 343 68 0 0 1152 746 </string>
<string>404 484 343 68 0 0 1152 746 </string>
</dict>
<key>IBFramework Version</key>
<string>248.0</string>
@ -46,10 +46,8 @@
<key>IBOpenObjects</key>
<array>
<integer>56</integer>
<integer>82</integer>
<integer>394</integer>
<integer>160</integer>
<integer>10</integer>
</array>
<key>IBSystem Version</key>
<string>5Q125</string>

Двоичные данные
chimera/BrowserWindow.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -0,0 +1,30 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import <AppKit/AppKit.h>
@interface CHAutoCompleteTextField : NSTextField {
}
@end

Просмотреть файл

@ -0,0 +1,28 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import "CHAutoCompleteTextField.h"
@implementation CHAutoCompleteTextField
@end

Просмотреть файл

@ -21,6 +21,7 @@
F57074BA026BFD0101A80166,
F57074BE026D80DF01A80166,
F59E9F3F0237E43401A967DF,
F52D5CCC027A867601A80166,
);
isa = PBXGroup;
name = Classes;
@ -320,7 +321,7 @@
<key>CFBundleExecutable</key>
<string>Navigator</string>
<key>CFBundleGetInfoString</key>
<string>Navigator 0.2.5, © 2002 Mozilla</string>
<string>Navigator 0.2.6, © 2002 Mozilla</string>
<key>CFBundleIconFile</key>
<string>appicon.icns</string>
<key>CFBundleIdentifier</key>
@ -332,7 +333,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>Navigator 0.2.5</string>
<string>Navigator 0.2.6</string>
<key>CFBundleSignature</key>
<string>CHIM</string>
<key>CFBundleURLTypes</key>
@ -350,7 +351,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0.2.5</string>
<string>0.2.6</string>
<key>NSAppleScriptEnabled</key>
<true/>
<key>NSMainNibFile</key>
@ -391,6 +392,7 @@
F5C3AB830270072A01A80166,
F541495C02711A8301A80166,
F541496002711B0101A80166,
F52D5CCD027A867601A80166,
);
isa = PBXHeadersBuildPhase;
name = Headers;
@ -480,6 +482,7 @@
F5C3AB840270072A01A80166,
F541495D02711A8301A80166,
F541496102711B0101A80166,
F52D5CCE027A867601A80166,
);
isa = PBXSourcesBuildPhase;
name = Sources;
@ -878,6 +881,7 @@
F5607CB5023944AD01A967DF,
F59E9F3D0237E28401A967DF,
F5137A1102676B9101026D05,
F52D5CCB027A867601A80166,
);
isa = PBXGroup;
name = Headers;
@ -1362,6 +1366,28 @@
settings = {
};
};
F52D5CCB027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.h;
refType = 4;
};
F52D5CCC027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.mm;
refType = 4;
};
F52D5CCD027A867601A80166 = {
fileRef = F52D5CCB027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F52D5CCE027A867601A80166 = {
fileRef = F52D5CCC027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F538DFAE023B36A7010001CA = {
children = (
F538DFAF023B3739010001CA,

Просмотреть файл

@ -6,7 +6,7 @@
\f0\i\b\fs18 \cf0 \
\fs68 Navigator 0.2.5\
\fs68 Navigator 0.2.6\
\f1\b0\fs24 \
\
@ -17,7 +17,7 @@
\
\
\f2\i0 Navigator version 0.2.5\
\f2\i0 Navigator version 0.2.6\
http://www.mozilla.org\
http://chimera.mozdev.org\

1
chimera/English.lproj/BrowserWindow.nib/classes.nib сгенерированный
Просмотреть файл

@ -64,6 +64,7 @@
};
SUPERCLASS = NSWindowController;
},
{CLASS = CHAutoCompleteTextField; LANGUAGE = ObjC; SUPERCLASS = NSTextField; },
{CLASS = CHBookmarksToolbar; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{CLASS = CHExtendedOutlineView; LANGUAGE = ObjC; SUPERCLASS = NSOutlineView; },
{CLASS = CHExtendedTabView; LANGUAGE = ObjC; SUPERCLASS = NSTabView; },

4
chimera/English.lproj/BrowserWindow.nib/info.nib сгенерированный
Просмотреть файл

@ -25,7 +25,7 @@
<key>463</key>
<string>7 444 200 252 0 0 1152 746 </string>
<key>56</key>
<string>319 496 343 68 0 0 1152 746 </string>
<string>404 484 343 68 0 0 1152 746 </string>
</dict>
<key>IBFramework Version</key>
<string>248.0</string>
@ -46,10 +46,8 @@
<key>IBOpenObjects</key>
<array>
<integer>56</integer>
<integer>82</integer>
<integer>394</integer>
<integer>160</integer>
<integer>10</integer>
</array>
<key>IBSystem Version</key>
<string>5Q125</string>

Двоичные данные
chimera/English.lproj/BrowserWindow.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -21,6 +21,7 @@
F57074BA026BFD0101A80166,
F57074BE026D80DF01A80166,
F59E9F3F0237E43401A967DF,
F52D5CCC027A867601A80166,
);
isa = PBXGroup;
name = Classes;
@ -320,7 +321,7 @@
<key>CFBundleExecutable</key>
<string>Navigator</string>
<key>CFBundleGetInfoString</key>
<string>Navigator 0.2.5, © 2002 Mozilla</string>
<string>Navigator 0.2.6, © 2002 Mozilla</string>
<key>CFBundleIconFile</key>
<string>appicon.icns</string>
<key>CFBundleIdentifier</key>
@ -332,7 +333,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>Navigator 0.2.5</string>
<string>Navigator 0.2.6</string>
<key>CFBundleSignature</key>
<string>CHIM</string>
<key>CFBundleURLTypes</key>
@ -350,7 +351,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0.2.5</string>
<string>0.2.6</string>
<key>NSAppleScriptEnabled</key>
<true/>
<key>NSMainNibFile</key>
@ -391,6 +392,7 @@
F5C3AB830270072A01A80166,
F541495C02711A8301A80166,
F541496002711B0101A80166,
F52D5CCD027A867601A80166,
);
isa = PBXHeadersBuildPhase;
name = Headers;
@ -480,6 +482,7 @@
F5C3AB840270072A01A80166,
F541495D02711A8301A80166,
F541496102711B0101A80166,
F52D5CCE027A867601A80166,
);
isa = PBXSourcesBuildPhase;
name = Sources;
@ -878,6 +881,7 @@
F5607CB5023944AD01A967DF,
F59E9F3D0237E28401A967DF,
F5137A1102676B9101026D05,
F52D5CCB027A867601A80166,
);
isa = PBXGroup;
name = Headers;
@ -1362,6 +1366,28 @@
settings = {
};
};
F52D5CCB027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.h;
refType = 4;
};
F52D5CCC027A867601A80166 = {
isa = PBXFileReference;
path = CHAutoCompleteTextField.mm;
refType = 4;
};
F52D5CCD027A867601A80166 = {
fileRef = F52D5CCB027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F52D5CCE027A867601A80166 = {
fileRef = F52D5CCC027A867601A80166;
isa = PBXBuildFile;
settings = {
};
};
F538DFAE023B36A7010001CA = {
children = (
F538DFAF023B3739010001CA,

Просмотреть файл

@ -6,7 +6,7 @@
\f0\i\b\fs18 \cf0 \
\fs68 Navigator 0.2.5\
\fs68 Navigator 0.2.6\
\f1\b0\fs24 \
\
@ -17,7 +17,7 @@
\
\
\f2\i0 Navigator version 0.2.5\
\f2\i0 Navigator version 0.2.6\
http://www.mozilla.org\
http://chimera.mozdev.org\

Просмотреть файл

@ -64,6 +64,7 @@
};
SUPERCLASS = NSWindowController;
},
{CLASS = CHAutoCompleteTextField; LANGUAGE = ObjC; SUPERCLASS = NSTextField; },
{CLASS = CHBookmarksToolbar; LANGUAGE = ObjC; SUPERCLASS = NSView; },
{CLASS = CHExtendedOutlineView; LANGUAGE = ObjC; SUPERCLASS = NSOutlineView; },
{CLASS = CHExtendedTabView; LANGUAGE = ObjC; SUPERCLASS = NSTabView; },

Просмотреть файл

@ -25,7 +25,7 @@
<key>463</key>
<string>7 444 200 252 0 0 1152 746 </string>
<key>56</key>
<string>319 496 343 68 0 0 1152 746 </string>
<string>404 484 343 68 0 0 1152 746 </string>
</dict>
<key>IBFramework Version</key>
<string>248.0</string>
@ -46,10 +46,8 @@
<key>IBOpenObjects</key>
<array>
<integer>56</integer>
<integer>82</integer>
<integer>394</integer>
<integer>160</integer>
<integer>10</integer>
</array>
<key>IBSystem Version</key>
<string>5Q125</string>

Двоичные данные
chimera/resources/localized/English.lproj/BrowserWindow.nib/objects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -0,0 +1,30 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import <AppKit/AppKit.h>
@interface CHAutoCompleteTextField : NSTextField {
}
@end

Просмотреть файл

@ -0,0 +1,28 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 2002 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* David Hyatt <hyatt@netscape.com> (Original Author)
*/
#import "CHAutoCompleteTextField.h"
@implementation CHAutoCompleteTextField
@end