Chameleon Applications

Chameleon Applications Commit Details

Date:2010-01-31 18:19:16 (14 years 2 months ago)
Author:DieBuche
Commit:90
Parents: 89
Message:Matched colors of all tables&borders; renamed apple_hfs to apple hfs.
Changes:
M/branches/diebuche/ChameleonPrefPane/Sources/RoundedBox.m
M/branches/diebuche/ChameleonPrefPane/Sources/CustomTableView.mm
M/branches/diebuche/ChameleonPrefPane/Sources/ShellProcess.cpp
M/branches/diebuche/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj

File differences

branches/diebuche/ChameleonPrefPane/Sources/ShellProcess.cpp
160160
161161
162162
163
163164
164165
165166
166167
167168
168169
170
169171
170172
171173
// filter useless partitions:
if (partInfo.clabel()[len-1] !='*' &&
partInfo.clabel()!="EFI" &&
partInfo.fsType()!="EFI" &&
partInfo.fsType()!="Apple_partition_scheme" &&
partInfo.fsType()!="Apple_partition_map" &&
partInfo.fsType()!="Apple_Free"
)
{
if (partInfo.fsType()=="Apple_HFS") partInfo.fsType("Apple HFS");
std::string diskLabel(trim(label));
bool found=false;
// early bail out if we found what we need: DON't make any assumption
branches/diebuche/ChameleonPrefPane/Sources/RoundedBox.m
5555
5656
5757
58
58
5959
6060
6161
- (void)setDefaults
{
borderWidth = 2.0;
[self setBorderColor:[NSColor colorWithCalibratedRed:0.0 green:0.45 blue:0.6 alpha: 1.0]];
[self setBorderColor:[NSColor colorWithCalibratedRed:0.38 green:0.48 blue:0.68 alpha: 1.0]];
[self setTitleColor:[NSColor whiteColor]];
[self setGradientStartColor:[NSColor colorWithCalibratedWhite:0.93 alpha:1.0]];
[self setGradientEndColor:[NSColor colorWithCalibratedWhite:0.82 alpha:1.0]];
branches/diebuche/ChameleonPrefPane/Sources/CustomTableView.mm
1313
1414
1515
16
17
16
17
1818
1919
2020
- (void)awakeFromNib
{
// highlight colors
mHighlightColorInFocusView = [[NSColor colorWithDeviceRed:.65 green:.75 blue:1.0 alpha:1.0] retain];
mHighlightColorOutOfFocusView = [[NSColor colorWithDeviceRed:.50 green:.65 blue:.85 alpha:1.0] retain];
mHighlightColorInFocusView = [[NSColor colorWithCalibratedRed:.38 green:.48 blue:.68 alpha:1] retain];
mHighlightColorOutOfFocusView = [[NSColor colorWithCalibratedRed:.38 green:.48 blue:.68 alpha:0.5] retain];
}
- (id)_highlightColorForCell:(NSCell *)cell
{
branches/diebuche/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj
6868
6969
7070
71
72
73
74
75
76
7177
7278
7379
......
137143
138144
139145
146
147
148
149
150
151
140152
141153
142154
......
242254
243255
244256
257
258
245259
246260
247261
......
324338
325339
326340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
327361
328362
329363
......
386420
387421
388422
423
424
425
426
427
428
429
430
389431
390432
391433
......
421463
422464
423465
466
467
468
469
470
471
424472
425473
426474
......
480528
481529
482530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
483579
484580
485581
B398220D111349F5009E2520 /* RoundedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = B398220A111349F5009E2520 /* RoundedBox.h */; };
B39822E911134F8B009E2520 /* RoundedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = B398220B111349F5009E2520 /* RoundedBox.m */; };
B3E370081115D2B000BBF949 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3E370061115D2B000BBF949 /* Localizable.strings */; };
B3E372EC1115E78E00BBF949 /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = B3E372E61115E78E00BBF949 /* Chameleon.xib */; };
B3E372ED1115E78E00BBF949 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3E372E81115E78E00BBF949 /* InfoPlist.strings */; };
B3E372EE1115E78E00BBF949 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3E372EA1115E78E00BBF949 /* Localizable.strings */; };
B3E372F61115E79500BBF949 /* Chameleon.xib in Resources */ = {isa = PBXBuildFile; fileRef = B3E372F01115E79500BBF949 /* Chameleon.xib */; };
B3E372F71115E79500BBF949 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3E372F21115E79500BBF949 /* InfoPlist.strings */; };
B3E372F81115E79500BBF949 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = B3E372F41115E79500BBF949 /* Localizable.strings */; };
B3F8855D11146A460022CA5D /* TableViewsController.h in Headers */ = {isa = PBXBuildFile; fileRef = B3F8855B11146A460022CA5D /* TableViewsController.h */; };
B3F8855E11146A460022CA5D /* TableViewsController.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3F8855C11146A460022CA5D /* TableViewsController.mm */; };
B3F8879611148E790022CA5D /* footer.png in Resources */ = {isa = PBXBuildFile; fileRef = B3F8879511148E790022CA5D /* footer.png */; };
B398220A111349F5009E2520 /* RoundedBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RoundedBox.h; path = Sources/RoundedBox.h; sourceTree = "<group>"; };
B398220B111349F5009E2520 /* RoundedBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RoundedBox.m; path = Sources/RoundedBox.m; sourceTree = "<group>"; };
B3E370071115D2B000BBF949 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
B3E372E71115E78E00BBF949 /* de_DE */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = de_DE; path = Chameleon.xib; sourceTree = "<group>"; };
B3E372E91115E78E00BBF949 /* de_DE */ = {isa = PBXFileReference; fileEncoding = 2483028224; lastKnownFileType = text.plist.strings; name = de_DE; path = InfoPlist.strings; sourceTree = "<group>"; };
B3E372EB1115E78E00BBF949 /* de_DE */ = {isa = PBXFileReference; fileEncoding = 2483028224; lastKnownFileType = text.plist.strings; name = de_DE; path = Localizable.strings; sourceTree = "<group>"; };
B3E372F11115E79500BBF949 /* it_IT */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = it_IT; path = Chameleon.xib; sourceTree = "<group>"; };
B3E372F31115E79500BBF949 /* it_IT */ = {isa = PBXFileReference; fileEncoding = 2483028224; lastKnownFileType = text.plist.strings; name = it_IT; path = InfoPlist.strings; sourceTree = "<group>"; };
B3E372F51115E79500BBF949 /* it_IT */ = {isa = PBXFileReference; fileEncoding = 2483028224; lastKnownFileType = text.plist.strings; name = it_IT; path = Localizable.strings; sourceTree = "<group>"; };
B3F8855B11146A460022CA5D /* TableViewsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TableViewsController.h; path = Sources/TableViewsController.h; sourceTree = "<group>"; };
B3F8855C11146A460022CA5D /* TableViewsController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = TableViewsController.mm; path = Sources/TableViewsController.mm; sourceTree = "<group>"; };
B3F8879511148E790022CA5D /* footer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = footer.png; path = Resources/footer.png; sourceTree = "<group>"; };
089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
B3E372EF1115E79500BBF949 /* it_IT.lproj */,
B3E372E51115E78E00BBF949 /* de_DE.lproj */,
B3E370061115D2B000BBF949 /* Localizable.strings */,
01A25D68111109FF0024EA7E /* cdBootCreator.sh */,
01A25D69111109FF0024EA7E /* getDevProp.sh */,
name = RoundedBox;
sourceTree = "<group>";
};
B3E372E51115E78E00BBF949 /* de_DE.lproj */ = {
isa = PBXGroup;
children = (
B3E372E61115E78E00BBF949 /* Chameleon.xib */,
B3E372E81115E78E00BBF949 /* InfoPlist.strings */,
B3E372EA1115E78E00BBF949 /* Localizable.strings */,
);
path = de_DE.lproj;
sourceTree = "<group>";
};
B3E372EF1115E79500BBF949 /* it_IT.lproj */ = {
isa = PBXGroup;
children = (
B3E372F01115E79500BBF949 /* Chameleon.xib */,
B3E372F21115E79500BBF949 /* InfoPlist.strings */,
B3E372F41115E79500BBF949 /* Localizable.strings */,
);
path = it_IT.lproj;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
buildConfigurationList = 1DBD214C08BA80EA00186707 /* Build configuration list for PBXProject "ChameleonPrefPane" */;
compatibilityVersion = "Xcode 3.1";
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
de_DE,
it_IT,
);
mainGroup = 089C166AFE841209C02AAC07 /* StartupPrefPane */;
projectDirPath = "";
projectRoot = "";
B3981F48111332FB009E2520 /* name.png in Resources */,
B3F8879611148E790022CA5D /* footer.png in Resources */,
B3E370081115D2B000BBF949 /* Localizable.strings in Resources */,
B3E372EC1115E78E00BBF949 /* Chameleon.xib in Resources */,
B3E372ED1115E78E00BBF949 /* InfoPlist.strings in Resources */,
B3E372EE1115E78E00BBF949 /* Localizable.strings in Resources */,
B3E372F61115E79500BBF949 /* Chameleon.xib in Resources */,
B3E372F71115E79500BBF949 /* InfoPlist.strings in Resources */,
B3E372F81115E79500BBF949 /* Localizable.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
name = Localizable.strings;
sourceTree = "<group>";
};
B3E372E61115E78E00BBF949 /* Chameleon.xib */ = {
isa = PBXVariantGroup;
children = (
B3E372E71115E78E00BBF949 /* de_DE */,
);
name = Chameleon.xib;
sourceTree = "<group>";
};
B3E372E81115E78E00BBF949 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
B3E372E91115E78E00BBF949 /* de_DE */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
B3E372EA1115E78E00BBF949 /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
B3E372EB1115E78E00BBF949 /* de_DE */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
B3E372F01115E79500BBF949 /* Chameleon.xib */ = {
isa = PBXVariantGroup;
children = (
B3E372F11115E79500BBF949 /* it_IT */,
);
name = Chameleon.xib;
sourceTree = "<group>";
};
B3E372F21115E79500BBF949 /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
B3E372F31115E79500BBF949 /* it_IT */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
B3E372F41115E79500BBF949 /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
B3E372F51115E79500BBF949 /* it_IT */,
);
name = Localizable.strings;
sourceTree = "<group>";
};
F506C042013D9D8C01CA16C8 /* Chameleon.xib */ = {
isa = PBXVariantGroup;
children = (

Archive Download the corresponding diff file

Revision: 90