|
Revision 6474, 0.9 kB
(checked in by flynd, 4 months ago)
|
|
Remake of user dialog to have same page handling as settings dialog. Added pages for other user settings and group membership as well.
|
| Line | |
|---|
| 1 | # Various Dialogs |
|---|
| 2 | set(dialogs_SRCS |
|---|
| 3 | aboutdlg.cpp |
|---|
| 4 | adduserdlg.cpp |
|---|
| 5 | authuserdlg.cpp |
|---|
| 6 | awaymsgdlg.cpp |
|---|
| 7 | chatdlg.cpp |
|---|
| 8 | customautorespdlg.cpp |
|---|
| 9 | editcategorydlg.cpp |
|---|
| 10 | editfiledlg.cpp |
|---|
| 11 | editfilelistdlg.cpp |
|---|
| 12 | editgrpdlg.cpp |
|---|
| 13 | filedlg.cpp |
|---|
| 14 | forwarddlg.cpp |
|---|
| 15 | hintsdlg.cpp |
|---|
| 16 | historydlg.cpp |
|---|
| 17 | joinchatdlg.cpp |
|---|
| 18 | keyrequestdlg.cpp |
|---|
| 19 | logwindow.cpp |
|---|
| 20 | mmsenddlg.cpp |
|---|
| 21 | ownereditdlg.cpp |
|---|
| 22 | ownermanagerdlg.cpp |
|---|
| 23 | phonedlg.cpp |
|---|
| 24 | plugindlg.cpp |
|---|
| 25 | randomchatdlg.cpp |
|---|
| 26 | refusedlg.cpp |
|---|
| 27 | registeruser.cpp |
|---|
| 28 | reqauthdlg.cpp |
|---|
| 29 | searchuserdlg.cpp |
|---|
| 30 | securitydlg.cpp |
|---|
| 31 | showawaymsgdlg.cpp |
|---|
| 32 | skinbrowser.cpp |
|---|
| 33 | statsdlg.cpp |
|---|
| 34 | userselectdlg.cpp |
|---|
| 35 | utilitydlg.cpp |
|---|
| 36 | ) |
|---|
| 37 | |
|---|
| 38 | # GPG specific stuff |
|---|
| 39 | if (GPGME_FOUND) |
|---|
| 40 | list(APPEND dialogs_SRCS gpgkeymanager.cpp gpgkeyselect.cpp) |
|---|
| 41 | endif (GPGME_FOUND) |
|---|
| 42 | |
|---|
| 43 | string(REGEX REPLACE ".cpp" ".h" dialogs_HDRS "${dialogs_SRCS}") |
|---|
| 44 | |
|---|
| 45 | qt4_wrap_cpp(dialogs_MOC_SRCS ${dialogs_HDRS}) |
|---|
| 46 | |
|---|
| 47 | set(dialogs ${dialogs_SRCS} ${dialogs_MOC_SRCS}) |
|---|
| 48 | add_library(dialogs STATIC ${dialogs}) |
|---|