X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ef44ad5631a1790f975e1e43d453bcc9f6c48f9..9f4de6b2cf06f53a98b28f53640f3b9ec8cf4182:/src/common/imagxpm.cpp diff --git a/src/common/imagxpm.cpp b/src/common/imagxpm.cpp index d46b11898a..c6ad6d6aa1 100644 --- a/src/common/imagxpm.cpp +++ b/src/common/imagxpm.cpp @@ -127,39 +127,49 @@ bool wxXPMHandler::SaveFile(wxImage * image, for ( k = MaxCixels; cols > k; k *= MaxCixels) chars_per_pixel++; - // 2. write the header: + // 2. write the header: + wxString sName; + if ( image->HasOption(wxIMAGE_OPTION_FILENAME) ) + { + wxSplitPath(image->GetOption(wxIMAGE_OPTION_FILENAME), + NULL, &sName, NULL); + sName << wxT("_xpm"); + } + + if ( !sName.IsEmpty() ) + sName = wxString(wxT("/* XPM */\nstatic char *")) + sName; + else + sName = wxT("/* XPM */\nstatic char *xpm_data"); + stream.Write(sName.c_str(), sName.Len()); + char tmpbuf[200]; // VS: 200b is safe upper bound for anything produced by sprintf below - // (101 bytes the string, neither %i can expand into more than 10 chars) + // (<101 bytes the string, neither %i can expand into more than 10 chars) sprintf(tmpbuf, - "/* XPM */\n" - "static char *xpm_data[] = {\n" + "[] = {\n" "/* columns rows colors chars-per-pixel */\n" "\"%i %i %i %i\",\n", image->GetWidth(), image->GetHeight(), cols, chars_per_pixel); stream.Write(tmpbuf, strlen(tmpbuf)); // 3. create color symbols table: - wxHashTable table(wxKEY_INTEGER); - table.DeleteContents(TRUE); - image->ComputeHistogram(table); + wxImageHistogram histogram; + image->ComputeHistogram(histogram); char *symbols_data = new char[cols * (chars_per_pixel+1)]; char **symbols = new char*[cols]; // 2a. find mask colour: - long mask_key = -1; + unsigned long mask_key = 0x1000000 /*invalid RGB value*/; if (image->HasMask()) mask_key = (image->GetMaskRed() << 16) | (image->GetMaskGreen() << 8) | image->GetMaskBlue(); // 2b. generate colour table: - table.BeginFind(); - wxNode *node = NULL; - while ((node = table.Next()) != NULL) + for (wxImageHistogram::iterator entry = histogram.begin(); + entry != histogram.end(); entry++ ) { - wxHNode *hnode = (wxHNode*) node->GetData(); - long index = hnode->index; + unsigned long index = entry->second.index; symbols[index] = symbols_data + index * (chars_per_pixel+1); char *sym = symbols[index]; @@ -172,7 +182,7 @@ bool wxXPMHandler::SaveFile(wxImage * image, } sym[j] = '\0'; - long key = node->GetKeyInteger(); + unsigned long key = entry->first; if (key == 0) tmp.Printf(wxT("\"%s c Black\",\n"), sym); @@ -196,8 +206,7 @@ bool wxXPMHandler::SaveFile(wxImage * image, for (i = 0; i < image->GetWidth(); i++, data += 3) { unsigned long key = (data[0] << 16) | (data[1] << 8) | (data[2]); - wxHNode *hnode = (wxHNode*) table.Get(key); - stream.Write(symbols[hnode->index], chars_per_pixel); + stream.Write(symbols[histogram[key].index], chars_per_pixel); } tmp_c = '\"'; stream.Write(&tmp_c, 1); if ( j + 1 < image->GetHeight() ) @@ -213,13 +222,6 @@ bool wxXPMHandler::SaveFile(wxImage * image, delete[] symbols; delete[] symbols_data; - // FIXME: it will be better to use macros-based wxHashTable & DeleteContents(TRUE) - table.BeginFind(); - while ((node = table.Next()) != NULL) - { - delete (wxHNode *) node->GetData(); - } - return TRUE; }