mirror of https://github.com/BOINC/boinc.git
90 lines
2.6 KiB
C++
90 lines
2.6 KiB
C++
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC 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 for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// make_app_icon_h.C
|
|
// Utility to convert *.icns file into app_icon.h file for use
|
|
// with api/setMacIcon() in science applications.
|
|
|
|
// THIS CODE IS OBSOLETE! A better way to add an icon to science applications
|
|
// (or any Mac executable, including command-line tools) is:
|
|
// [1] Select the application in the Finder
|
|
// [2] Get Info (command-I) for the selected application
|
|
// [3] Click on the file's current icon in the top left corner of the Get Info window
|
|
// [4] Paste (command-v) the desired icon.
|
|
//
|
|
// To copy an icon from a different file:
|
|
// [a] Get Info for the source file
|
|
// [b] Click on the file's icon in the top left corner of the Get Info window
|
|
// [c] Copy (command-c) the icon.
|
|
|
|
#include "config.h"
|
|
#include <cstdio>
|
|
|
|
int main(int argc, char** argv) {
|
|
int retval = 0;
|
|
FILE *inFile, *outFile;
|
|
int count, c;
|
|
|
|
if (argc < 3) {
|
|
puts ("usage: make_app_icon_h source_path dest_path\n");
|
|
return 0;
|
|
}
|
|
|
|
inFile = fopen(argv[1], "rb");
|
|
if (inFile == NULL) {
|
|
printf ("Couldn't open input file %s\n", argv[1]);
|
|
return 0;
|
|
}
|
|
|
|
outFile = fopen(argv[2], "w");
|
|
if (outFile == NULL) {
|
|
printf ("Couldn't create output file %s\n", argv[2]);
|
|
fclose(inFile);
|
|
return 0;
|
|
}
|
|
|
|
fputs("char MacAppIconData[] = {\n\t", outFile);
|
|
count = 16;
|
|
c = getc(inFile);
|
|
if (c == EOF) {
|
|
printf ("No data in input file %s\n", argv[1]);
|
|
fclose(inFile);
|
|
fclose(outFile);
|
|
return 0;
|
|
}
|
|
|
|
fprintf(outFile, "0X%02X", c);
|
|
|
|
while ((c = getc(inFile)) != EOF) {
|
|
if (--count)
|
|
fputs(",", outFile);
|
|
else {
|
|
fputs(",\n\t", outFile);
|
|
count = 16;
|
|
}
|
|
|
|
fprintf(outFile, "0X%02X", c);
|
|
}
|
|
|
|
fputs("\n};\n", outFile);
|
|
fclose(inFile);
|
|
fclose(outFile);
|
|
|
|
return retval;
|
|
}
|
|
|