Search printer spool folder by name stored in attribute 'Printer Name'.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21738 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -463,20 +463,33 @@ bool Printer::HasCurrentPrinter(BString& name) {
|
|||||||
// Try to move job to another printer folder.
|
// Try to move job to another printer folder.
|
||||||
//
|
//
|
||||||
// Parameters:
|
// Parameters:
|
||||||
// name - the printer folder name.
|
// name - the printer name.
|
||||||
//
|
//
|
||||||
// Returns:
|
// Returns:
|
||||||
// true if successful.
|
// true if successful.
|
||||||
// ---------------------------------------------------------------
|
// ---------------------------------------------------------------
|
||||||
bool Printer::MoveJob(const BString& name) {
|
bool Printer::MoveJob(const BString& name) {
|
||||||
BPath file(&fJob->EntryRef());
|
|
||||||
BPath path;
|
BPath path;
|
||||||
file.GetParent(&path);
|
if (::find_directory(B_USER_PRINTERS_DIRECTORY, &path) != B_OK)
|
||||||
path.Append(".."); path.Append(name.String());
|
return false;
|
||||||
BDirectory dir(path.Path());
|
|
||||||
BEntry entry(&fJob->EntryRef());
|
// search printer folder with given name
|
||||||
// try to move job file to proper directory
|
BDirectory printersFolder(path.Path());
|
||||||
return entry.MoveTo(&dir) == B_OK;
|
BEntry printerEntry;
|
||||||
|
while (printersFolder.GetNextEntry(&printerEntry) == B_OK) {
|
||||||
|
BNode printerNode(&printerEntry);
|
||||||
|
BString printerName;
|
||||||
|
if (printerNode.ReadAttrString(PSRV_PRINTER_ATTR_PRT_NAME, &printerName) != B_OK)
|
||||||
|
continue;
|
||||||
|
if (name != printerName)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
BEntry jobEntry(&fJob->EntryRef());
|
||||||
|
BDirectory printerDirectory(&printerEntry);
|
||||||
|
return jobEntry.MoveTo(&printerDirectory) == B_OK;
|
||||||
|
// try to move job file to proper directory
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------
|
// ---------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user