void gui_paste_from_clipboard(struct gui_window *g, int x, int y) { /* This and the other clipboard code is heavily based on the RKRM examples */ struct ContextNode *cn; ULONG rlen=0,error; struct CSet cset; LONG codeset = 0; char *clip; STRPTR readbuf = AllocVec(1024,MEMF_PRIVATE | MEMF_CLEAR); cset.CodeSet = 0; if(OpenIFF(iffh,IFFF_READ)) return; if(StopChunk(iffh,ID_FTXT,ID_CHRS)) return; if(StopChunk(iffh,ID_FTXT,ID_CSET)) return; while(1) { error = ParseIFF(iffh,IFFPARSE_SCAN); if(error == IFFERR_EOC) continue; else if(error) break; cn = CurrentChunk(iffh); if((cn)&&(cn->cn_Type == ID_FTXT)&&(cn->cn_ID == ID_CSET)) { rlen = ReadChunkBytes(iffh,&cset,32); if(cset.CodeSet == 1) codeset = 106; else codeset = cset.CodeSet; } if((cn)&&(cn->cn_Type == ID_FTXT)&&(cn->cn_ID == ID_CHRS)) { while((rlen = ReadChunkBytes(iffh,readbuf,1024)) > 0) { if(codeset == 0) { utf8_from_local_encoding(readbuf,rlen,&clip); } else { utf8_from_enc(readbuf, (const char *)ObtainCharsetInfo(DFCS_NUMBER, codeset, DFCS_MIMENAME), rlen, &clip); } browser_window_paste_text(g->shared->bw,clip,rlen,true); } if(rlen < 0) error = rlen; } } CloseIFF(iffh); }
BOOL LoadPrefsFH(BPTR fh) { static struct SerialPrefs loadprefs; struct IFFHandle *iff; BOOL retval = FALSE; if ((iff = AllocIFF())) { iff->iff_Stream = (IPTR)fh; InitIFFasDOS(iff); if (!OpenIFF(iff, IFFF_READ)) { D(bug("LoadPrefs: OpenIFF okay.\n")); if (!StopChunk(iff, ID_PREF, ID_SERL)) { D(bug("LoadPrefs: StopChunk okay.\n")); if (!ParseIFF(iff, IFFPARSE_SCAN)) { struct ContextNode *cn; D(bug("LoadPrefs: ParseIFF okay.\n")); cn = CurrentChunk(iff); if (cn->cn_Size == sizeof(struct SerialPrefs)) { D(bug("LoadPrefs: ID_SERL chunk size okay.\n")); if (ReadChunkBytes(iff, &loadprefs, sizeof(struct SerialPrefs)) == sizeof(struct SerialPrefs)) { D(bug("LoadPrefs: Reading chunk successful.\n")); serialprefs = loadprefs; D(bug("LoadPrefs: Everything okay :-)\n")); retval = TRUE; } } } /* if (!ParseIFF(iff, IFFPARSE_SCAN)) */ } /* if (!StopChunk(iff, ID_PREF, ID_SERL)) */ CloseIFF(iff); } /* if (!OpenIFF(iff, IFFF_READ)) */ FreeIFF(iff); } /* if ((iff = AllocIFF())) */ return retval; }
/*** Reads the next CHRS chunk from clipboard ***/ BOOL CBReadCHRS( void *jbuf, LINE *st, ULONG pos, LONG *nbl ) { struct ContextNode * cn; BOOL ret = FALSE; /* If clipboard not already allocated, makes it now */ if( clip == NULL && !CBOpen(STD_CLIP_UNIT) ) return FALSE; if( !OpenIFF(clip, IFFF_READ) ) { if( !StopChunk(clip, ID_FTXT, ID_CHRS) ) { if( !ParseIFF(clip, IFFPARSE_SCAN) ) { cn = CurrentChunk(clip); if( cn->cn_Type == ID_FTXT && cn->cn_ID == ID_CHRS && cn->cn_Size > 0 ) { STRPTR buf; ULONG size = cn->cn_Size; if( (buf = (STRPTR) AllocVec(size, MEMF_PUBLIC)) ) { UBYTE eol; ReadChunkBytes(clip, buf, size); /* What's kind of paste method shall we used? */ { register STRPTR s; register ULONG n; for(s=buf,n=size; --n && *s!='\n' && *s!='\r'; s++); eol = *s; } /* Add string to the buffer */ reg_group_by(jbuf); if(eol == '\n') add_string(jbuf,st,pos,buf,size,nbl) ; else add_block (jbuf,st,pos,buf,size,nbl) ; reg_group_by(jbuf); FreeVec(buf); ret = TRUE; } else ThrowError(Wnd, ErrMsg(ERR_NOMEM)); } else ThrowError(Wnd, ErrMsg(ERR_NOTXTINCLIP)); } else ThrowError(Wnd, ErrMsg(ERR_NOTXTINCLIP)); } else ThrowError(Wnd, ErrMsg(ERR_NOMEM)); CloseIFF(clip); } /* ThrowError(Wnd, ErrMsg(ERR_READCLIP)); */ return ret; }
/************************************************************************** MUIM_Configdata_Load Get the content of the file into the object. **************************************************************************/ IPTR Configdata__MUIM_Load(struct IClass *cl, Object * obj, struct MUIP_Configdata_Load *msg) { struct IFFHandle *iff; IPTR res = TRUE; if ((iff = AllocIFF())) { D(bug("loading prefs from %s\n", msg->filename)); if ((iff->iff_Stream = (IPTR)Open(msg->filename,MODE_OLDFILE))) { InitIFFasDOS(iff); if (!OpenIFF(iff, IFFF_READ)) { StopChunk( iff, MAKE_ID('P','R','E','F'), MAKE_ID('M','U','I','C')); while (!ParseIFF(iff, IFFPARSE_SCAN)) { struct ContextNode *cn; if (!(cn = CurrentChunk(iff))) continue; if (cn->cn_ID == MAKE_ID('M','U','I','C')) DoMethod(obj, MUIM_Dataspace_ReadIFF, (IPTR)iff); } CloseIFF(iff); } else { res = FALSE; } Close((BPTR)iff->iff_Stream); } else { res = FALSE; } FreeIFF(iff); } else { res = FALSE; } return res; }
char *Sys_GetClipboardData(void) { #ifdef __AROS__ struct IFFHandle *IFFHandle; struct ContextNode *cn; char *data = NULL; if ((IFFHandle = AllocIFF())) { if ((IFFHandle->iff_Stream = (IPTR) OpenClipboard(0))) { InitIFFasClip(IFFHandle); if (!OpenIFF(IFFHandle, IFFF_READ)) { if (!StopChunk(IFFHandle, ID_FTXT, ID_CHRS)) { if (!ParseIFF(IFFHandle, IFFPARSE_SCAN)) { cn = CurrentChunk(IFFHandle); if (cn && (cn->cn_Type == ID_FTXT) && (cn->cn_ID == ID_CHRS) && (cn->cn_Size > 0)) { data = (char *) Z_Malloc(cn->cn_Size + 1); if (ReadChunkBytes(IFFHandle, data, cn->cn_Size)) { data[cn->cn_Size] = '\0'; } else { data[0] = '\0'; } } } } CloseIFF(IFFHandle); } CloseClipboard((struct ClipboardHandle *) IFFHandle->iff_Stream); } FreeIFF(IFFHandle); } return data; #else return NULL; #endif }
static void readDatabaseFile(Entries entries, struct IFFHandle *iff) { struct ContextNode *cn; struct _Entry entry; struct StoredProperty *sp; struct _Automatic automatic; char *data; LONG *p; int error, n, i; PropChunk(iff, ID_FTXT, ID_AUTO); StopChunk(iff, ID_FTXT, ID_CHRS); error = ParseIFF(iff, IFFPARSE_SCAN); /* Read AUTO entries first */ sp = FindProp(iff, ID_FTXT, ID_AUTO); n = AUTO_SIZE; if (sp -> sp_Size && sp -> sp_Size % n) myMsg1("auto sizes don't match. Old version? Doing my best..."); p = (LONG *) sp -> sp_Data; for (i = 0; i < sp -> sp_Size; i += n) { automatic.first.ds_Days = *p++; automatic.first.ds_Minute = *p++; automatic.first.ds_Tick = *p++; automatic.last.ds_Days = *p++; automatic.last.ds_Minute = *p++; automatic.last.ds_Tick = *p++; automatic.repeatDays = *p++; automatic.repeatWeeks = *p++; automatic.repeatMonths = *p++; automatic.repeatYears = *p++; memcpy(automatic.amount, p, AMOUNTL); p += (AMOUNTL/ sizeof(p)); memcpy(automatic.transaction,p, TRANSACTIONL);p += (TRANSACTIONL/sizeof(p)); memcpy(automatic.imputation, p,IMPUTATIONL); p += (IMPUTATIONL / sizeof(p)); DB_AddEntry((DataBase) entries -> automatic, & automatic); } /* And then the database itself */ cn = CurrentChunk(iff); n = ENTRY_SIZE; if (cn -> cn_Size && cn -> cn_Size % n) myMsg1("entry sizes don't match. Old version? Doing my best..."); for (i=0; i < cn -> cn_Size; i += n) { struct DateStamp *ds = & entry.date; ReadChunkBytes(iff, & ds -> ds_Days, sizeof(LONG)); ReadChunkBytes(iff, & ds -> ds_Minute, sizeof(LONG)); ReadChunkBytes(iff, & ds -> ds_Tick, sizeof(LONG)); ReadChunkBytes(iff, & entry.transaction, TRANSACTIONL); ReadChunkBytes(iff, & entry.amount, AMOUNTL); ReadChunkBytes(iff, & entry.checkNumber, CHECKNUMBERL); ReadChunkBytes(iff, & entry.imputation, IMPUTATIONL); ReadChunkBytes(iff, & entry.reason, REASONL); ReadChunkBytes(iff, & entry.validated, 4); addEntryDatabase(entries, & entry, 0, 0); /* not a fake entry */ } }
/*----------------------* * Paste from Clipboard * *----------------------*/ BOOL PasteClip (LONG x, struct line_node *actline, struct InstData *data) { struct line_node *line = NULL; struct line_node *startline = NULL; struct line_node *previous = NULL; UWORD *styles = NULL; UWORD *colors = NULL; STRPTR textline; BOOL newline = TRUE; BOOL res = FALSE; ENTER(); if(InitClipboard(data, IFFF_READ)) { if(StopChunk(data->iff, ID_FTXT, ID_CHRS) == 0 && StopChunk(data->iff, ID_FTXT, ID_FLOW) == 0 && StopChunk(data->iff, ID_FTXT, ID_HIGH) == 0 && StopChunk(data->iff, ID_FTXT, ID_SBAR) == 0 && StopChunk(data->iff, ID_FTXT, ID_COLS) == 0 && StopChunk(data->iff, ID_FTXT, ID_STYL) == 0 && StopChunk(data->iff, ID_FTXT, ID_CSET) == 0) { LONG error, codeset = 0; UWORD flow = MUIV_TextEditor_Flow_Left; UWORD color = FALSE; UWORD separator = 0; BOOL ownclip = FALSE; LONG updatefrom; while(TRUE) { struct ContextNode *cn; error = ParseIFF(data->iff, IFFPARSE_SCAN); SHOWVALUE(DBF_CLIPBOARD, error); if(error == IFFERR_EOC) continue; else if(error) break; if((cn = CurrentChunk(data->iff)) != NULL) { switch (cn->cn_ID) { case ID_CSET: D(DBF_CLIPBOARD, "reading FLOW"); SHOWVALUE(DBF_CLIPBOARD, cn->cn_Size); if(cn->cn_Size >= 4) { /* Only the first four bytes are interesting */ if(ReadChunkBytes(data->iff, &codeset, 4) != 4) { codeset = 0; } SHOWVALUE(DBF_CLIPBOARD, codeset); } break; case ID_FLOW: D(DBF_CLIPBOARD, "reading FLOW"); SHOWVALUE(DBF_CLIPBOARD, cn->cn_Size); if(cn->cn_Size == 2) { if(ReadChunkBytes(data->iff, &flow, 2) == 2) if(flow > MUIV_TextEditor_Flow_Right) flow = MUIV_TextEditor_Flow_Left; SHOWVALUE(DBF_CLIPBOARD, flow); } break; case ID_HIGH: D(DBF_CLIPBOARD, "reading HIGH"); SHOWVALUE(DBF_CLIPBOARD, cn->cn_Size); if (cn->cn_Size == 2) { error = ReadChunkBytes(data->iff, &color, 2); SHOWVALUE(DBF_CLIPBOARD, color); SHOWVALUE(DBF_CLIPBOARD, error); } break; case ID_SBAR: D(DBF_CLIPBOARD, "reading SBAR"); SHOWVALUE(DBF_CLIPBOARD, cn->cn_Size); if (cn->cn_Size == 2) { error = ReadChunkBytes(data->iff, &separator, 2); SHOWVALUE(DBF_CLIPBOARD, separator); SHOWVALUE(DBF_CLIPBOARD, error); } break; case ID_COLS: D(DBF_CLIPBOARD, "reading COLS"); SHOWVALUE(DBF_CLIPBOARD, cn->cn_Size); if(colors) { MyFreePooled(data->mypool, colors); colors = NULL; } // allocate one word more than the chunk tell us, because we terminate the array with an additional value if(cn->cn_Size > 0 && (colors = (UWORD *)MyAllocPooled(data->mypool, cn->cn_Size + sizeof(UWORD))) != NULL) { error = ReadChunkBytes(data->iff, colors, cn->cn_Size); SHOWVALUE(DBF_CLIPBOARD, error); colors[cn->cn_Size / 2] = 0xffff; } break; case ID_STYL: D(DBF_CLIPBOARD, "reading STYL"); SHOWVALUE(DBF_CLIPBOARD, cn->cn_Size); ownclip = TRUE; if(styles) { MyFreePooled(data->mypool, styles); styles = NULL; } // allocate one word more than the chunk tell us, because we terminate the array with an additional value if(cn->cn_Size > 0 && (styles = (UWORD *)MyAllocPooled(data->mypool, cn->cn_Size + sizeof(UWORD))) != NULL) { error = ReadChunkBytes(data->iff, styles, cn->cn_Size); SHOWVALUE(DBF_CLIPBOARD, error); styles[cn->cn_Size / 2] = EOS; } break; case ID_CHRS: { D(DBF_CLIPBOARD, "reading CHRS"); SHOWVALUE(DBF_CLIPBOARD, cn->cn_Size); data->HasChanged = TRUE; if(cn->cn_Size > 0 && !ownclip) { char *contents; ULONG length = cn->cn_Size; if((contents = (char *)MyAllocPooled(data->mypool, length + 1)) != NULL) { error = ReadChunkBytes(data->iff, contents, length); SHOWVALUE(DBF_CLIPBOARD, error); if(contents[length - 1] != '\n') { newline = FALSE; } else { length--; } contents[length] = '\0'; #if defined(__MORPHOS__) if (codeset == CODESET_UTF8) { if (IS_MORPHOS2) contents = utf8_to_ansi(data, contents); } #endif if((line = ImportText(contents, data, &ImPlainHook, data->ImportWrap))) { if(!startline) startline = line; if(previous) previous->next = line; line->previous = previous; line->visual = VisualHeight(line, data); data->totallines += line->visual; while(line->next) { line = line->next; line->visual = VisualHeight(line, data); data->totallines += line->visual; } previous = line; } MyFreePooled(data->mypool, contents); } } else { ULONG length = cn->cn_Size; if(length > 0 && (textline = (char *)MyAllocPooled(data->mypool, length + 2)) != NULL) { error = ReadChunkBytes(data->iff, textline, length); SHOWVALUE(DBF_CLIPBOARD, error); if (textline[length - 1] != '\n') { newline = FALSE; textline[length] = '\n'; length++; } textline[length] = '\0'; if((line = AllocLine(data))) { line->next = NULL; line->previous = previous; line->line.Contents = textline; line->line.Length = length; line->visual = VisualHeight(line, data); line->line.Color = color; line->line.Flow = flow; line->line.Separator = separator; line->line.Styles = styles; line->line.Colors = colors; data->totallines += line->visual; if(!startline) startline = line; if(previous) previous->next = line; previous = line; } else { if(styles) MyFreePooled(data->mypool, (void *)styles); if(colors) MyFreePooled(data->mypool, (void *)colors); } } else { if(styles) MyFreePooled(data->mypool, styles); if(colors) MyFreePooled(data->mypool, (void *)colors); } styles = NULL; colors = NULL; flow = MUIV_TextEditor_Flow_Left; color = FALSE; separator = 0; ownclip = FALSE; } } break; } } } if(line) { BOOL oneline = FALSE; SplitLine(x, actline, FALSE, NULL, data); line->next = actline->next; actline->next->previous = line; actline->next = startline; startline->previous = actline; data->CPos_X = line->line.Length-1; if(actline->next == line) { data->CPos_X += actline->line.Length-1; oneline = TRUE; } if(!newline) MergeLines(line, data); MergeLines(actline, data); if(oneline) line = actline; if(newline) { line = line->next; data->CPos_X = 0; } data->actualline = line; } else { switch(error) { case IFFERR_MANGLED: case IFFERR_SYNTAX: case IFFERR_NOTIFF: D(DBF_CLIPBOARD, "no FTXT clip!"); DoMethod(data->object, MUIM_TextEditor_HandleError, Error_ClipboardIsNotFTXT); break; default: D(DBF_CLIPBOARD, "clipboard is empty!"); DoMethod(data->object, MUIM_TextEditor_HandleError, Error_ClipboardIsEmpty); break; } } data->update = TRUE; ScrollIntoDisplay(data); updatefrom = LineToVisual(actline, data)-1; if(updatefrom < 0) updatefrom = 0; DumpText(data->visual_y+updatefrom, updatefrom, data->maxlines, TRUE, data); if(data->update) res = TRUE; else data->update = TRUE; } EndClipSession(data); } RETURN(res); return res; }
IPTR SMEditor__MUIM_PrefsEditor_ImportFH ( Class *CLASS, Object *self, struct MUIP_PrefsEditor_ImportFH *message ) { SETUP_INST_DATA; struct ContextNode *context; struct IFFHandle *handle; struct ScreenModePrefs smp; BOOL success = TRUE; LONG error; if (!(handle = AllocIFF())) return FALSE; handle->iff_Stream = (IPTR) message->fh; InitIFFasDOS(handle); if ((error = OpenIFF(handle, IFFF_READ)) == 0) { BYTE i; // FIXME: We want some sanity checking here! for (i = 0; i < 1; i++) { if ((error = StopChunk(handle, ID_PREF, ID_SCRM)) == 0) { if ((error = ParseIFF(handle, IFFPARSE_SCAN)) == 0) { context = CurrentChunk(handle); error = ReadChunkBytes ( handle, &smp, sizeof(struct ScreenModePrefs) ); if (error < 0) { printf("Error: ReadChunkBytes() returned %ld!\n", error); } } else { printf("ParseIFF() failed, returncode %ld!\n", error); success = FALSE; break; } } else { printf("StopChunk() failed, returncode %ld!\n", error); success = FALSE; } } CloseIFF(handle); } else { //ShowError(_(MSG_CANT_OPEN_STREAM)); } FreeIFF(handle); if (success) { SMPByteSwap(&smp); nnset(data->selector, MUIA_ScreenModeSelector_Active, smp.smp_DisplayID); SetAttrs ( data->properties, MUIA_NoNotify, TRUE, MUIA_ScreenModeProperties_DisplayID, smp.smp_DisplayID, MUIA_ScreenModeProperties_Width, smp.smp_Width, MUIA_ScreenModeProperties_Height, smp.smp_Height, MUIA_ScreenModeProperties_Depth, smp.smp_Depth, MUIA_ScreenModeProperties_Autoscroll, smp.smp_Control & AUTOSCROLL, TAG_DONE ); } return success; }
/*** Try to load a preference file ***/ UBYTE load_prefs(PREFS *prefs, STRPTR filename) { APTR file; UBYTE err = RETURN_OK; /* Locate preference file */ if( (file = open_prefs(filename, MODE_USE)) ) { /* Search for PREF/JANO chunk in this file */ if( !StopChunk(file, ID_PREF, ID_JANO) ) { if( !ParseIFF(file, IFFPARSE_SCAN) ) { struct ContextNode * cn = CurrentChunk(file); STRPTR buffer = NULL; UWORD ByteRead = 0; if( cn->cn_Type == ID_PREF && cn->cn_ID == ID_JANO && (buffer = (STRPTR) AllocVec(cn->cn_Size, MEMF_PUBLIC)) && ReadChunkBytes(file, buffer, cn->cn_Size) == cn->cn_Size ) { /* He have read the file, converts it into PREFS struct */ memset(prefs, 0, sizeof(*prefs)); prefs->wordssep = WordsSep; prefs->attrtxt.ta_Name = FontName; prefs->attrscr.ta_Name = FontName+30; while(ByteRead < cn->cn_Size) { register STRPTR src; src = buffer + ByteRead; if(src[0] < MAX_NUMFIELD) { register STRPTR dest = (STRPTR)prefs+offsets[*src]; if(sizefields[ *src ] == 0) dest = *(STRPTR *)dest; CopyMem(src+2, dest, src[1]); } ByteRead += src[1]+2; } } else err = RETURN_FAIL; if(buffer != NULL) FreeVec( buffer ); } else err = RETURN_FAIL; } else err = RETURN_FAIL; close_prefs(file); } else err = RETURN_FAIL; if(err == RETURN_OK) { info_screen(prefs, IntuitionBase->ActiveScreen); /* If user wants to use a custom font for its interface, try lo ** ** load it, otherwise use default screen font of parent screen: */ if(!prefs->use_scrfont || !(prefs->scrfont = (void *) OpenDiskFont( &prefs->attrscr )) ) prefs->scrfont = prefs->parent->RastPort.Font; /* Ditto with text font */ if(!prefs->use_txtfont || !(prefs->txtfont = (void *) OpenDiskFont( &prefs->attrtxt )) ) prefs->txtfont = GfxBase->DefaultFont; /* Makes valid pointers */ text_to_attr(prefs->scrfont, &prefs->attrscr); text_to_attr(prefs->txtfont, &prefs->attrtxt); /* Special characters that separate words */ unpack_separators(prefs->wordssep); } else set_default_prefs(prefs, IntuitionBase->ActiveScreen); /* All done */ return err; }