Added rename/delete popups to the file and imageselect windows.

Redesigned the userpreference window layout. (not finished yet)

Enhanced the texteditor with; a rightmousemenu, clipboard text
support (for windows !) and the alt-m keystroke generates a 3d
text object. (up to 1000 characters)

(1, 2, 3, 4 and 7 from http://www.tncci.com/blender/feats.html)
This commit is contained in:
2003-04-28 11:17:21 +00:00
parent 71ffa47752
commit 52f6a630ce
16 changed files with 1128 additions and 135 deletions

View File

@@ -79,6 +79,8 @@
#include "BIF_editseq.h"
#include "BIF_editlattice.h"
#include "BIF_editsima.h"
#include "BIF_editoops.h"
#include "BIF_imasel.h"
#include "BIF_screen.h"
#include "BIF_tbcallback.h"
#include "BIF_editnla.h"
@@ -89,6 +91,7 @@
#include "BSE_editipo.h"
#include "BSE_buttons.h"
#include "BSE_filesel.h"
#include "IMB_imbuf.h"
@@ -1424,11 +1427,21 @@ void clever_numbuts(void)
else if(curarea->spacetype==SPACE_IMAGE) {
clever_numbuts_sima();
}
else if(curarea->spacetype==SPACE_IMASEL) {
clever_numbuts_imasel();
}
else if(curarea->spacetype==SPACE_BUTS){
clever_numbuts_buts();
}
else if(curarea->spacetype==SPACE_OOPS) {
clever_numbuts_oops();
}
// else if(curarea->spacetype==SPACE_ACTION){
// stupid_damn_numbuts_action();
// }
else if(curarea->spacetype==SPACE_FILE) {
clever_numbuts_filesel();
}
}