|
|
Manage the "Recent Document Menu" entries displayed by applications such as Kicker and Konqueror.
These entries are automatically generated .desktop files pointing to the current application and document. You should call the static add() method whenever the user opens or saves a new document if you want it to show up in the menu.
You don't have to worry about this if you are using any KFileDialog derived class to open and save documents, as it already calls this class. User defined limits on the maximum number of documents to save, etc... are all automatically handled.
QStringList recentDocuments ()
| recentDocuments |
[static]
Return a list of absolute paths to recent document .desktop files, sorted by date.
void add (const KURL& url)
| add |
[static]
Add a new item to the Recent Document menu.
Parameters:
url | The url to add. |
void add (const KURL& url, const QString& desktopEntryName)
| add |
[static]
Add a new item to the Recent Document menu, specifying the application to open it with. The above add() method uses argv[0] for the app name, which isn't always flexible enough. This method is used when an application launches another one to open a document.
Parameters:
url | The url to add. |
serviceDesktopName | The desktopEntryName of the service to use for opening this document. |
void add (const QString &documentStr, bool isURL = false)
| add |
[static]
Add a new item to the Recent Document menu. Calls add( url ).
Parameters:
documentStr | The full path to the document or URL to add. |
Set | to true if documentStr is an URL and not a local file path.
|
void clear ()
| clear |
[static]
Clear the recent document menu of all entries.
int maximumItems ()
| maximumItems |
[static]
Returns the maximum amount of recent document entries allowed.
QString recentDocumentDirectory ()
| recentDocumentDirectory |
[static]
Returns the path to the directory where recent document .desktop files are stored.