| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143 |
- <?xml version="1.0" ?>
- <makefile>
- <!--
- IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
- -->
- <!-- ======================================================================
- FILES
- Files are listed in variables according to this scheme:
- * each group has _SRC and _HDR variable, for sources and headers
- respectively
- * file groups are:
- BASE_CMN common base files (all platforms)
- GUI_CMN common GUI files (all platforms)
- BASE_AND_GUI_CMN_SRC files that must be compiled both into GUI
- and base library (all platforms)
- BASE_$(platform) base files used on platform
- BASE_AND_GUI_$(platform)_SRC base & gui files used on platform
- $(port)LOWLEVEL low-level GUI classes
- $(port) high-level files for a port
- XWIN_LOWLEVEL low-level classes for X Window System
- ports (wxGTK, wxMotif, wxX11)
- MSW_DESKTOP files used only on desktop Windows
- versions and not under Windows CE
- xxx_NATIVE native files not used by wxUniv (used as
- complement of LOWLEVEL when most of the
- files are lowlevel and only few are native)
- HTML wxHTML files
- XRC wxXRC files
- * one file may be listed in several groups
- ====================================================================== -->
- <if cond="FORMAT in ['borland','mingw','msvc','watcom']">
- <define-rule name="__mm-to-$(OBJEXT[1:])" extends="__any,compilation_rule">
- </define-rule>
- </if>
- <!-- ====================================================================== -->
- <!-- wxBase -->
- <!-- ====================================================================== -->
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- UNIX -->
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- Files used on all Unix systems, including Darwin -->
- <set var="BASE_UNIX_AND_DARWIN_SRC" hints="files">
- src/common/fdiodispatcher.cpp
- src/common/selectdispatcher.cpp
- src/unix/appunix.cpp
- src/unix/dir.cpp
- src/unix/dlunix.cpp
- src/unix/epolldispatcher.cpp
- src/unix/evtloopunix.cpp
- src/unix/fdiounix.cpp
- src/unix/snglinst.cpp
- src/unix/stackwalk.cpp
- src/unix/stdpaths.cpp
- src/unix/timerunx.cpp
- src/unix/threadpsx.cpp
- src/unix/utilsunx.cpp
- src/unix/wakeuppipe.cpp
- src/unix/fswatcher_kqueue.cpp
- </set>
- <set var="BASE_UNIX_AND_DARWIN_HDR" hints="files">
- wx/unix/app.h
- wx/unix/apptbase.h
- wx/unix/apptrait.h
- wx/unix/chkconf.h
- wx/unix/evtloop.h
- wx/unix/evtloopsrc.h
- wx/unix/pipe.h
- wx/unix/stdpaths.h
- wx/unix/stackwalk.h
- wx/unix/tls.h
- wx/unix/fswatcher_kqueue.h
- </set>
- <!--
- Files used on all Unix systems, including Darwin with any port but wxMac
- (this is really an aberration, we should also use these files for wxMac,
- it's not done because of some OS 9 support leftovers only now)
- -->
- <set var="BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC" hints="files">
- $(BASE_UNIX_AND_DARWIN_SRC)
- src/unix/mimetype.cpp
- </set>
- <set var="BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR" hints="files">
- $(BASE_UNIX_AND_DARWIN_HDR)
- wx/private/streamtempinput.h
- wx/private/pipestream.h
- wx/unix/private/pipestream.h
- wx/unix/execute.h
- wx/unix/mimetype.h
- </set>
- <!--
- Files used on all non-Darwin Unix systems (because Darwin provides other,
- better, native equivalents of the functionality they implement (e.g.
- CFSocket instead of BSD sockets) or doesn't provide it at all (epoll,
- backtrace())
- -->
- <set var="BASE_UNIX_SRC" hints="files">
- $(BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC)
- src/unix/fswatcher_inotify.cpp
- </set>
- <set var="BASE_UNIX_HDR" hints="files">
- $(BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR)
- wx/unix/fswatcher_inotify.h
- </set>
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- Windows -->
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <set var="BASE_WIN32_SRC" hints="files">
- src/msw/basemsw.cpp
- src/msw/crashrpt.cpp
- src/msw/debughlp.cpp
- src/msw/dde.cpp
- src/msw/dir.cpp
- src/msw/dlmsw.cpp
- src/msw/evtloopconsole.cpp
- src/msw/mimetype.cpp
- src/msw/power.cpp
- src/msw/regconf.cpp
- src/msw/registry.cpp
- src/msw/snglinst.cpp
- src/msw/stackwalk.cpp
- src/msw/stdpaths.cpp
- src/msw/thread.cpp
- src/msw/timer.cpp
- src/msw/utils.cpp
- src/msw/utilsexc.cpp
- src/msw/fswatcher.cpp
- </set>
- <set var="BASE_AND_GUI_WIN32_SRC" hints="files">
- src/msw/main.cpp
- src/msw/mslu.cpp
- src/msw/volume.cpp
- </set>
- <set var="BASE_WINCE_SRC" hints="files">
- <if cond="TOOLKIT=='WINCE'">src/msw/wince/time.cpp</if>
- </set>
- <set var="BASE_WIN32_HDR" hints="files">
- wx/msw/apptrait.h
- wx/msw/apptbase.h
- wx/msw/chkconf.h
- wx/msw/crashrpt.h
- wx/msw/dde.h
- wx/msw/debughlp.h
- wx/msw/evtloopconsole.h
- wx/msw/gccpriv.h
- wx/msw/libraries.h
- wx/msw/mimetype.h
- wx/msw/mslu.h
- wx/msw/private.h
- wx/msw/regconf.h
- wx/msw/registry.h
- wx/msw/seh.h
- wx/msw/stackwalk.h
- wx/msw/stdpaths.h
- wx/msw/winundef.h
- wx/msw/wrapcctl.h
- wx/msw/wrapcdlg.h
- wx/msw/wrapwin.h
- wx/msw/fswatcher.h
- </set>
- <set var="BASE_WINCE_HDR" hints="files">
- <if cond="TOOLKIT=='WINCE'">
- wx/msw/wince/time.h
- wx/msw/wince/chkconf.h
- </if>
- </set>
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- Mac -->
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- Used on Mac OS X wxMac base, and Mac OS X darwin base -->
- <set var="BASE_COREFOUNDATION_SRC" hints="files">
- src/osx/core/cfstring.cpp
- src/osx/core/evtloop_cf.cpp
- src/osx/core/stdpaths_cf.cpp
- src/osx/core/strconv_cf.cpp
- src/osx/core/utilsexc_base.cpp
- </set>
- <set var="BASE_COREFOUNDATION_HDR" hints="files">
- wx/osx/core/cfdataref.h
- wx/osx/core/cfref.h
- wx/osx/core/cfstring.h
- wx/osx/core/hid.h
- wx/osx/core/evtloop.h
- wx/osx/core/objcid.h
- wx/osx/core/private.h
- wx/osx/core/stdpaths.h
- </set>
- <!-- Base files used by OS X ports (not Carbon) -->
- <set var="BASE_OSX_SHARED_SRC" hints="files">
- src/osx/core/mimetype.cpp
- $(BASE_COREFOUNDATION_SRC)
- $(BASE_UNIX_AND_DARWIN_SRC)
- </set>
- <set var="BASE_OSX_SHARED_HDR" hints="files">
- $(BASE_COREFOUNDATION_HDR)
- $(BASE_UNIX_AND_DARWIN_HDR)
- </set>
- <!-- Base and GUI files used by OS X -->
- <set var="BASE_AND_GUI_OSX_CARBON_SRC" hints="files">
- src/osx/carbon/utils.cpp
- src/osx/carbon/uma.cpp
- </set>
- <set var="BASE_AND_GUI_OSX_COCOA_SRC" hints="files">
- src/osx/cocoa/utils.mm
- </set>
- <set var="BASE_AND_GUI_OSX_IPHONE_SRC" hints="files">
- src/osx/iphone/utils.mm
- </set>
- <!-- Base files used by non-wxMac OS X builds -->
- <set var="BASE_OSX_NOTWXMAC_SRC" hints="files">
- $(BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC)
- $(BASE_COREFOUNDATION_SRC)
- </set>
- <set var="BASE_OSX_NOTWXMAC_HDR" hints="files">
- $(BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR)
- $(BASE_COREFOUNDATION_HDR)
- </set>
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- OS/2 -->
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <set var="BASE_OS2_SRC" hints="files">
- src/common/fdiodispatcher.cpp
- src/common/selectdispatcher.cpp
- src/unix/appunix.cpp
- src/unix/evtloopunix.cpp
- src/unix/timerunx.cpp
- src/os2/dir.cpp
- src/os2/mimetype.cpp
- src/os2/snglinst.cpp
- src/os2/stdpaths.cpp
- src/os2/thread.cpp
- src/os2/utils.cpp
- src/os2/utilsexc.cpp
- </set>
- <set var="BASE_AND_GUI_OS2_SRC" hints="files">
- </set>
- <set var="BASE_OS2_HDR" hints="files">
- wx/unix/app.h
- wx/os2/apptbase.h
- wx/os2/apptrait.h
- wx/unix/evtloop.h
- wx/os2/mimetype.h
- wx/os2/private.h
- wx/os2/stdpaths.h
- wx/os2/chkconf.h
- wx/os2/wxrsc.h
- </set>
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- MSDOS -->
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <set var="BASE_MSDOS_SRC" hints="files">
- src/msdos/dir.cpp
- src/msdos/mimetype.cpp
- src/msdos/utilsdos.cpp
- </set>
- <set var="BASE_AND_GUI_MSDOS_SRC" hints="files">
- </set>
- <set var="BASE_MSDOS_HDR" hints="files">
- wx/msdos/mimetype.h
- </set>
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <!-- Common -->
- <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -->
- <set var="BASE_CMN_SRC" hints="files">
- src/common/any.cpp
- src/common/appbase.cpp
- src/common/arcall.cpp
- src/common/arcfind.cpp
- src/common/archive.cpp
- src/common/arrstr.cpp
- src/common/base64.cpp
- src/common/clntdata.cpp
- src/common/cmdline.cpp
- src/common/config.cpp
- src/common/convauto.cpp
- src/common/datetime.cpp
- src/common/datetimefmt.cpp
- src/common/datstrm.cpp
- src/common/dircmn.cpp
- src/common/dynarray.cpp
- src/common/dynlib.cpp
- src/common/dynload.cpp
- src/common/encconv.cpp
- src/common/evtloopcmn.cpp
- src/common/extended.c
- src/common/ffile.cpp
- src/common/file.cpp
- src/common/fileback.cpp
- src/common/fileconf.cpp
- src/common/filefn.cpp
- src/common/filename.cpp
- src/common/filesys.cpp
- src/common/filtall.cpp
- src/common/filtfind.cpp
- src/common/fmapbase.cpp
- src/common/fs_arc.cpp
- src/common/fs_filter.cpp
- src/common/hash.cpp
- src/common/hashmap.cpp
- src/common/init.cpp
- src/common/intl.cpp
- src/common/ipcbase.cpp
- src/common/languageinfo.cpp
- src/common/list.cpp
- src/common/log.cpp
- src/common/longlong.cpp
- src/common/memory.cpp
- src/common/mimecmn.cpp
- src/common/module.cpp
- src/common/mstream.cpp
- src/common/numformatter.cpp
- src/common/object.cpp
- src/common/platinfo.cpp
- src/common/powercmn.cpp
- src/common/process.cpp
- src/common/regex.cpp
- src/common/stdpbase.cpp
- src/common/sstream.cpp
- src/common/stdstream.cpp
- src/common/stopwatch.cpp
- src/common/strconv.cpp
- src/common/stream.cpp
- src/common/string.cpp
- src/common/stringimpl.cpp
- src/common/stringops.cpp
- src/common/strvararg.cpp
- src/common/sysopt.cpp
- src/common/tarstrm.cpp
- src/common/textbuf.cpp
- src/common/textfile.cpp
- src/common/threadinfo.cpp
- src/common/time.cpp
- src/common/timercmn.cpp
- src/common/timerimpl.cpp
- src/common/tokenzr.cpp
- src/common/translation.cpp
- src/common/txtstrm.cpp
- src/common/unichar.cpp
- src/common/uri.cpp
- src/common/ustring.cpp
- src/common/variant.cpp
- src/common/wfstream.cpp
- src/common/wxcrt.cpp
- src/common/wxprintf.cpp
- src/common/xlocale.cpp
- src/common/xti.cpp
- src/common/xtistrm.cpp
- src/common/zipstrm.cpp
- src/common/zstream.cpp
- src/common/fswatchercmn.cpp
- src/generic/fswatcherg.cpp
- </set>
- <set var="BASE_AND_GUI_CMN_SRC" hints="files">
- src/common/event.cpp
- src/common/fs_mem.cpp
- src/common/msgout.cpp
- src/common/utilscmn.cpp
- </set>
- <set var="BASE_CMN_HDR" hints="files">
- wx/afterstd.h
- wx/any.h
- wx/anystr.h
- wx/app.h
- wx/apptrait.h
- wx/archive.h
- wx/arrimpl.cpp
- wx/arrstr.h
- wx/atomic.h
- wx/base64.h
- wx/beforestd.h
- wx/buffer.h
- wx/build.h
- wx/chartype.h
- wx/checkeddelete.h
- wx/chkconf.h
- wx/clntdata.h
- wx/cmdargs.h
- wx/cmdline.h
- wx/compiler.h
- wx/confbase.h
- wx/config.h
- wx/convauto.h
- wx/containr.h
- wx/cpp.h
- wx/crt.h
- wx/datetime.h
- wx/datstrm.h
- wx/dde.h
- wx/debug.h
- wx/defs.h
- wx/dir.h
- wx/dlimpexp.h
- wx/dlist.h
- wx/dynarray.h
- wx/dynlib.h
- wx/dynload.h
- wx/encconv.h
- wx/event.h
- wx/eventfilter.h
- wx/evtloop.h
- wx/except.h
- wx/features.h
- wx/flags.h
- wx/ffile.h
- wx/file.h
- wx/fileconf.h
- wx/filefn.h
- wx/filename.h
- wx/filesys.h
- wx/fontenc.h
- wx/fontmap.h
- wx/fs_arc.h
- wx/fs_filter.h
- wx/fs_mem.h
- wx/fs_zip.h
- wx/hash.h
- wx/hashmap.h
- wx/hashset.h
- wx/html/forcelnk.h
- wx/iconloc.h
- wx/init.h
- wx/intl.h
- wx/iosfwrap.h
- wx/ioswrap.h
- wx/ipc.h
- wx/ipcbase.h
- wx/kbdstate.h
- wx/language.h
- wx/link.h
- wx/list.h
- wx/listimpl.cpp
- wx/log.h
- wx/longlong.h
- wx/math.h
- wx/memconf.h
- wx/memory.h
- wx/memtext.h
- wx/mimetype.h
- wx/module.h
- wx/mousestate.h
- wx/msgout.h
- wx/msgqueue.h
- wx/mstream.h
- wx/numformatter.h
- wx/object.h
- wx/platform.h
- wx/platinfo.h
- wx/power.h
- wx/process.h
- wx/ptr_scpd.h
- wx/ptr_shrd.h
- wx/recguard.h
- wx/regex.h
- wx/rtti.h
- wx/scopedarray.h
- wx/scopedptr.h
- wx/scopeguard.h
- wx/sharedptr.h
- wx/snglinst.h
- wx/sstream.h
- wx/stack.h
- wx/stackwalk.h
- wx/stdpaths.h
- wx/stdstream.h
- wx/stockitem.h
- wx/stopwatch.h
- wx/strconv.h
- wx/stream.h
- wx/string.h
- wx/stringimpl.h
- wx/stringops.h
- wx/strvararg.h
- wx/sysopt.h
- wx/tarstrm.h
- wx/textbuf.h
- wx/textfile.h
- wx/thread.h
- wx/thrimpl.cpp
- wx/time.h
- wx/timer.h
- wx/tls.h
- wx/tokenzr.h
- wx/tracker.h
- wx/translation.h
- wx/txtstrm.h
- wx/typeinfo.h
- wx/types.h
- wx/unichar.h
- wx/uri.h
- wx/ustring.h
- wx/utils.h
- wx/variant.h
- wx/vector.h
- wx/version.h
- wx/versioninfo.h
- wx/volume.h
- wx/weakref.h
- wx/wfstream.h
- wx/wx.h
- wx/wxchar.h
- wx/wxcrt.h
- wx/wxcrtbase.h
- wx/wxcrtvararg.h
- wx/wxprec.h
- wx/xlocale.h
- wx/xti.h
- wx/xti2.h
- wx/xtistrm.h
- wx/xtictor.h
- wx/xtihandler.h
- wx/xtiprop.h
- wx/xtitypes.h
- wx/zipstrm.h
- wx/zstream.h
- wx/meta/convertible.h
- wx/meta/if.h
- wx/meta/implicitconversion.h
- wx/meta/int2type.h
- wx/meta/movable.h
- wx/meta/pod.h
- wx/meta/removeref.h
- wx/fswatcher.h
- wx/generic/fswatcher.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxNet (part of wxBase) -->
- <!-- ====================================================================== -->
- <set var="NET_UNIX_SRC" hints="files">
- src/common/socketiohandler.cpp
- src/unix/sockunix.cpp
- </set>
- <set var="NET_OSX_SRC" hints="files">
- src/osx/core/sockosx.cpp
- </set>
- <set var="NET_WIN32_SRC" hints="files">
- src/msw/sockmsw.cpp
- src/msw/urlmsw.cpp
- </set>
- <set var="NET_WIN32_HDR" hints="files">
- </set>
- <set var="NET_WINCE_SRC" hints="files">
- <if cond="TOOLKIT=='WINCE'">src/msw/wince/net.cpp</if>
- </set>
- <set var="NET_WINCE_HDR" hints="files">
- <if cond="TOOLKIT=='WINCE'">wx/msw/wince/net.h</if>
- </set>
- <set var="NET_OS2_SRC" hints="files">
- src/unix/sockunix.cpp
- </set>
- <set var="NET_CMN_SRC" hints="files">
- src/common/fs_inet.cpp
- src/common/ftp.cpp
- src/common/http.cpp
- src/common/protocol.cpp
- src/common/sckaddr.cpp
- src/common/sckfile.cpp
- src/common/sckipc.cpp
- src/common/sckstrm.cpp
- src/common/socket.cpp
- src/common/url.cpp
- </set>
- <set var="NET_CMN_HDR" hints="files">
- wx/fs_inet.h
- wx/protocol/file.h
- wx/protocol/ftp.h
- wx/protocol/http.h
- wx/protocol/log.h
- wx/protocol/protocol.h
- wx/sckaddr.h
- wx/sckipc.h
- wx/sckstrm.h
- wx/socket.h
- wx/url.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxQA (non GUI library) -->
- <!-- ====================================================================== -->
- <set var="QA_SRC" hints="files">
- src/common/debugrpt.cpp
- src/generic/dbgrptg.cpp
- </set>
- <set var="QA_HDR" hints="files">
- wx/debugrpt.h
- </set>
- <!-- ====================================================================== -->
- <!-- Common GUI files -->
- <!-- ====================================================================== -->
- <set var="GUI_CMN_SRC" hints="files">
- src/common/accelcmn.cpp
- src/common/accesscmn.cpp
- src/common/anidecod.cpp
- src/common/affinematrix2d.cpp
- src/common/appcmn.cpp
- src/common/artprov.cpp
- src/common/artstd.cpp
- src/common/arttango.cpp
- src/common/bmpbase.cpp
- src/common/bmpbtncmn.cpp
- src/common/bookctrl.cpp
- src/common/btncmn.cpp
- src/common/cairo.cpp
- src/common/checkboxcmn.cpp
- src/common/checklstcmn.cpp
- src/common/choiccmn.cpp
- src/common/clipcmn.cpp
- src/common/clrpickercmn.cpp
- src/common/colourcmn.cpp
- src/common/colourdata.cpp
- src/common/combocmn.cpp
- src/common/cmdproc.cpp
- src/common/cmndata.cpp
- src/common/containr.cpp
- src/common/cshelp.cpp
- src/common/ctrlcmn.cpp
- src/common/ctrlsub.cpp
- src/common/dcbase.cpp
- src/common/dcbufcmn.cpp
- src/common/dcgraph.cpp
- src/common/dcsvg.cpp
- src/common/dirctrlcmn.cpp
- src/common/dlgcmn.cpp
- src/common/dndcmn.cpp
- src/common/dobjcmn.cpp
- src/common/docmdi.cpp
- src/common/docview.cpp
- src/common/dpycmn.cpp
- src/common/dseldlg.cpp
- src/common/effects.cpp
- src/common/fddlgcmn.cpp
- src/common/filectrlcmn.cpp
- src/common/filehistorycmn.cpp
- src/common/filepickercmn.cpp
- src/common/fontpickercmn.cpp
- src/common/fldlgcmn.cpp
- src/common/fontcmn.cpp
- src/common/fontdata.cpp
- src/generic/graphicc.cpp
- src/common/fontenumcmn.cpp
- src/common/fontmap.cpp
- src/common/fontutilcmn.cpp
- src/common/framecmn.cpp
- src/common/gaugecmn.cpp
- src/common/gbsizer.cpp
- src/common/gdicmn.cpp
- src/common/geometry.cpp
- src/common/gifdecod.cpp
- src/common/graphcmn.cpp
- src/common/headercolcmn.cpp
- src/common/headerctrlcmn.cpp
- src/common/helpbase.cpp
- src/common/iconbndl.cpp
- src/common/imagall.cpp
- src/common/imagbmp.cpp
- src/common/image.cpp
- src/common/imagfill.cpp
- src/common/imaggif.cpp
- src/common/imagiff.cpp
- src/common/imagjpeg.cpp
- src/common/imagpcx.cpp
- src/common/imagpng.cpp
- src/common/imagpnm.cpp
- src/common/imagtga.cpp
- src/common/imagtiff.cpp
- src/common/imagxpm.cpp
- src/common/layout.cpp
- src/common/lboxcmn.cpp
- src/common/listctrlcmn.cpp
- src/common/markupparser.cpp
- src/common/matrix.cpp
- src/common/menucmn.cpp
- src/common/modalhook.cpp
- src/common/mousemanager.cpp
- src/common/nbkbase.cpp
- src/common/overlaycmn.cpp
- src/common/ownerdrwcmn.cpp
- src/common/paper.cpp
- src/common/panelcmn.cpp
- src/common/persist.cpp
- src/common/pickerbase.cpp
- src/common/popupcmn.cpp
- src/common/preferencescmn.cpp
- src/common/prntbase.cpp
- src/common/quantize.cpp
- src/common/radiobtncmn.cpp
- src/common/radiocmn.cpp
- src/common/rearrangectrl.cpp
- src/common/rendcmn.cpp
- src/common/rgncmn.cpp
- src/common/scrolbarcmn.cpp
- src/common/settcmn.cpp
- src/common/sizer.cpp
- src/common/slidercmn.cpp
- src/common/spinbtncmn.cpp
- src/common/spinctrlcmn.cpp
- src/common/srchcmn.cpp
- src/common/statbar.cpp
- src/common/statbmpcmn.cpp
- src/common/statboxcmn.cpp
- src/common/statlinecmn.cpp
- src/common/stattextcmn.cpp
- src/common/stockitem.cpp
- src/common/tbarbase.cpp
- src/common/textcmn.cpp
- src/common/textentrycmn.cpp
- src/common/textmeasurecmn.cpp
- src/common/toplvcmn.cpp
- src/common/treebase.cpp
- src/common/uiactioncmn.cpp
- src/common/valgen.cpp
- src/common/validate.cpp
- src/common/valtext.cpp
- src/common/valnum.cpp
- src/common/wincmn.cpp
- src/common/windowid.cpp
- src/common/wrapsizer.cpp
- src/common/xpmdecod.cpp
- src/generic/busyinfo.cpp
- src/generic/buttonbar.cpp
- src/generic/choicdgg.cpp
- src/generic/choicbkg.cpp
- src/generic/combog.cpp
- src/generic/dcpsg.cpp
- src/generic/dirctrlg.cpp
- src/generic/dragimgg.cpp
- src/generic/filectrlg.cpp
- src/generic/headerctrlg.cpp
- src/generic/infobar.cpp
- src/generic/listbkg.cpp
- src/generic/logg.cpp
- src/generic/markuptext.cpp
- src/generic/msgdlgg.cpp
- src/generic/numdlgg.cpp
- src/generic/progdlgg.cpp
- src/generic/preferencesg.cpp
- src/generic/printps.cpp
- src/generic/renderg.cpp
- src/generic/richmsgdlgg.cpp
- src/generic/scrlwing.cpp
- src/generic/selstore.cpp
- src/generic/spinctlg.cpp
- src/generic/splitter.cpp
- src/generic/srchctlg.cpp
- src/generic/statbmpg.cpp
- src/generic/stattextg.cpp
- src/generic/textdlgg.cpp
- src/generic/tipwin.cpp
- src/generic/toolbkg.cpp
- src/generic/treectlg.cpp
- src/generic/treebkg.cpp
- src/generic/vlbox.cpp
- src/generic/vscroll.cpp
- src/xrc/xmlreshandler.cpp
- </set>
- <set var="GUI_CMN_HDR" hints="files">
- wx/affinematrix2dbase.h
- wx/affinematrix2d.h
- wx/anybutton.h
- wx/bmpbuttn.h
- wx/brush.h
- wx/button.h
- wx/checkbox.h
- wx/checklst.h
- wx/choicdlg.h
- wx/choice.h
- wx/cmndata.h
- wx/collpane.h
- wx/combo.h
- wx/combobox.h
- wx/compositewin.h
- wx/control.h
- wx/ctrlsub.h
- wx/cursor.h
- wx/custombgwin.h
- wx/dc.h
- wx/dcclient.h
- wx/dcgraph.h
- wx/dcmemory.h
- wx/dcprint.h
- wx/dcscreen.h
- wx/dcsvg.h
- wx/dialog.h
- wx/dirdlg.h
- wx/dragimag.h
- wx/encinfo.h
- wx/filedlg.h
- wx/frame.h
- wx/gauge.h
- wx/gbsizer.h
- wx/gdicmn.h
- wx/generic/accel.h
- wx/generic/buttonbar.h
- wx/generic/choicdgg.h
- wx/generic/colrdlgg.h
- wx/generic/combo.h
- wx/generic/custombgwin.h
- wx/generic/dcpsg.h
- wx/generic/dirctrlg.h
- wx/generic/dragimgg.h
- wx/generic/filectrlg.h
- wx/generic/headerctrlg.h
- wx/generic/infobar.h
- wx/generic/logg.h
- wx/generic/msgdlgg.h
- wx/generic/numdlgg.h
- wx/generic/notebook.h
- wx/generic/panelg.h
- wx/generic/prntdlgg.h
- wx/generic/printps.h
- wx/generic/progdlgg.h
- wx/generic/richmsgdlgg.h
- wx/generic/scrolwin.h
- wx/generic/spinctlg.h
- wx/generic/splitter.h
- wx/generic/srchctlg.h
- wx/generic/statbmpg.h
- wx/generic/stattextg.h
- wx/generic/textdlgg.h
- wx/generic/treectlg.h
- wx/graphics.h
- wx/headercol.h
- wx/headerctrl.h
- wx/helphtml.h
- wx/icon.h
- wx/infobar.h
- wx/itemid.h
- wx/layout.h
- wx/listbox.h
- wx/mdi.h
- wx/menu.h
- wx/modalhook.h
- wx/mousemanager.h
- wx/msgdlg.h
- wx/nativewin.h
- wx/numdlg.h
- wx/overlay.h
- wx/palette.h
- wx/panel.h
- wx/pen.h
- wx/position.h
- wx/preferences.h
- wx/radiobox.h
- wx/radiobut.h
- wx/range.h
- wx/rearrangectrl.h
- wx/renderer.h
- wx/richmsgdlg.h
- wx/scrolbar.h
- wx/scrolbar.h
- wx/scrolwin.h
- wx/selstore.h
- wx/settings.h
- wx/sizer.h
- wx/slider.h
- wx/statbmp.h
- wx/statbox.h
- wx/stattext.h
- wx/statusbr.h
- wx/testing.h
- wx/textcompleter.h
- wx/textctrl.h
- wx/textdlg.h
- wx/textentry.h
- wx/textwrapper.h
- wx/toolbar.h
- wx/validate.h
- wx/valtext.h
- wx/valnum.h
- wx/window.h
- wx/windowid.h
- wx/windowptr.h
- wx/withimages.h
- wx/wrapsizer.h
- wx/wupdlock.h
- wx/accel.h
- wx/access.h
- wx/anidecod.h
- wx/animdecod.h
- wx/artprov.h
- wx/bitmap.h
- wx/bookctrl.h
- wx/busyinfo.h
- wx/generic/busyinfo.h
- wx/caret.h
- wx/choicebk.h
- wx/clipbrd.h
- wx/clrpicker.h
- wx/cmdproc.h
- wx/colordlg.h
- wx/colour.h
- wx/colourdata.h
- wx/cshelp.h
- wx/dataobj.h
- wx/dcmirror.h
- wx/dcps.h
- wx/dialup.h
- wx/dirctrl.h
- wx/display.h
- wx/display_impl.h
- wx/dnd.h
- wx/docmdi.h
- wx/docview.h
- wx/effects.h
- wx/evtloopsrc.h
- wx/fdrepdlg.h
- wx/filectrl.h
- wx/filehistory.h
- wx/filepicker.h
- wx/fontpicker.h
- wx/fmappriv.h
- wx/font.h
- wx/fontdata.h
- wx/fontdlg.h
- wx/fontenum.h
- wx/fontutil.h
- wx/gdiobj.h
- wx/geometry.h
- wx/gifdecod.h
- wx/help.h
- wx/helpbase.h
- wx/helpwin.h
- wx/iconbndl.h
- wx/imagbmp.h
- wx/image.h
- wx/imaggif.h
- wx/imagiff.h
- wx/imagjpeg.h
- wx/imaglist.h
- wx/imagpcx.h
- wx/imagpng.h
- wx/imagpnm.h
- wx/imagtga.h
- wx/imagtiff.h
- wx/imagxpm.h
- wx/listbase.h
- wx/listbook.h
- wx/listctrl.h
- wx/matrix.h
- wx/menuitem.h
- wx/metafile.h
- wx/minifram.h
- wx/nonownedwnd.h
- wx/notebook.h
- wx/ownerdrw.h
- wx/paper.h
- wx/persist.h
- wx/persist/bookctrl.h
- wx/persist/splitter.h
- wx/persist/toplevel.h
- wx/persist/treebook.h
- wx/persist/window.h
- wx/pickerbase.h
- wx/popupwin.h
- wx/print.h
- wx/printdlg.h
- wx/prntbase.h
- wx/progdlg.h
- wx/quantize.h
- wx/rawbmp.h
- wx/region.h
- wx/scopeguard.h
- wx/simplebook.h
- wx/spinbutt.h
- wx/spinctrl.h
- wx/splitter.h
- wx/srchctrl.h
- wx/statline.h
- wx/tbarbase.h
- wx/tglbtn.h
- wx/tipwin.h
- wx/toolbook.h
- wx/tooltip.h
- wx/toplevel.h
- wx/treebase.h
- wx/treebook.h
- wx/treectrl.h
- wx/uiaction.h
- wx/valgen.h
- wx/vidmode.h
- wx/vlbox.h
- wx/vms_x_fix.h
- wx/vscroll.h
- wx/xpmdecod.h
- wx/xpmhand.h
- wx/xrc/xmlreshandler.h
- </set>
- <!-- ====================================================================== -->
- <!-- Common Unix files: -->
- <!-- ====================================================================== -->
- <set var="UNIX_SRC" hints="files">
- src/unix/apptraits.cpp
- </set>
- <!-- ====================================================================== -->
- <!-- Common X11 code: -->
- <!-- ====================================================================== -->
- <set var="XWIN_LOWLEVEL_SRC" hints="files">
- src/generic/caret.cpp
- src/generic/imaglist.cpp
- src/unix/dialup.cpp
- src/unix/displayx11.cpp
- src/unix/fontenum.cpp
- src/unix/fontutil.cpp
- src/unix/uiactionx11.cpp
- src/unix/utilsx11.cpp
- </set>
- <set var="XWIN_LOWLEVEL_HDR" hints="files">
- wx/generic/caret.h
- wx/generic/imaglist.h
- wx/unix/fontutil.h
- wx/unix/utilsx11.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxGTK -->
- <!-- ====================================================================== -->
- <set var="GTK_WIN32_SRC" hints="files">
- src/generic/caret.cpp
- src/generic/imaglist.cpp
- src/msw/ole/automtn.cpp
- src/msw/ole/oleutils.cpp
- src/msw/ole/safearray.cpp
- src/msw/ole/uuid.cpp
- src/msw/dialup.cpp
- src/msw/dib.cpp
- src/msw/display.cpp
- src/msw/utilswin.cpp
- src/unix/fontenum.cpp
- src/unix/fontutil.cpp
- </set>
- <set var="GTK_WIN32_HDR" hints="files">
- wx/generic/caret.h
- wx/generic/imaglist.h
- wx/msw/ole/automtn.h
- wx/msw/ole/oleutils.h
- wx/msw/ole/safearray.h
- wx/msw/ole/uuid.h
- wx/msw/dib.h
- wx/unix/fontutil.h
- </set>
- <set var="GTK_PLATFORM_SRC" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(XWIN_LOWLEVEL_SRC)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(XWIN_LOWLEVEL_SRC)</if>
- <if cond="PLATFORM_WIN32=='1'">$(GTK_WIN32_SRC)</if>
- </set>
- <set var="GTK_PLATFORM_HDR" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(XWIN_LOWLEVEL_HDR)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(XWIN_LOWLEVEL_HDR)</if>
- <if cond="PLATFORM_WIN32=='1'">$(GTK_WIN32_HDR)</if>
- </set>
- <set var="GTK_LOWLEVEL_SRC" hints="files">
- $(GTK_PLATFORM_SRC)
- src/generic/icon.cpp
- src/generic/paletteg.cpp
- src/gtk/app.cpp
- src/gtk/assertdlg_gtk.cpp
- src/gtk/bitmap.cpp
- src/gtk/brush.cpp
- src/gtk/clipbrd.cpp
- src/gtk/colour.cpp
- src/gtk/cursor.cpp
- src/gtk/dataobj.cpp
- src/gtk/dc.cpp
- src/gtk/display.cpp
- src/gtk/dnd.cpp
- src/gtk/evtloop.cpp
- src/gtk/filectrl.cpp
- src/gtk/filehistory.cpp
- src/gtk/font.cpp
- src/gtk/sockgtk.cpp
- src/gtk/minifram.cpp
- src/gtk/nonownedwnd.cpp
- src/gtk/pen.cpp
- src/gtk/popupwin.cpp
- src/gtk/private.cpp
- src/gtk/region.cpp
- src/gtk/renderer.cpp
- src/gtk/settings.cpp
- src/gtk/textmeasure.cpp
- src/gtk/timer.cpp
- src/gtk/tooltip.cpp
- src/gtk/toplevel.cpp
- src/gtk/utilsgtk.cpp
- src/gtk/win_gtk.cpp
- src/gtk/window.cpp
- </set>
- <set var="GTK2_LOWLEVEL_SRC" hints="files">
- $(GTK_LOWLEVEL_SRC)
- src/gtk/dcclient.cpp
- src/gtk/dcmemory.cpp
- src/gtk/dcscreen.cpp
- </set>
- <set var="GTK_LOWLEVEL_HDR" hints="files">
- $(GTK_PLATFORM_HDR)
- wx/generic/icon.h
- wx/generic/paletteg.h
- wx/gtk/app.h
- wx/gtk/assertdlg_gtk.h
- wx/gtk/bitmap.h
- wx/gtk/brush.h
- wx/gtk/clipbrd.h
- wx/gtk/colour.h
- wx/gtk/cursor.h
- wx/gtk/dataform.h
- wx/gtk/dataobj.h
- wx/gtk/dataobj2.h
- wx/gtk/dnd.h
- wx/gtk/evtloop.h
- wx/gtk/evtloopsrc.h
- wx/gtk/font.h
- wx/gtk/filehistory.h
- wx/gtk/minifram.h
- wx/gtk/nonownedwnd.h
- wx/gtk/pen.h
- wx/gtk/popupwin.h
- wx/gtk/region.h
- wx/gtk/tooltip.h
- wx/gtk/toplevel.h
- wx/gtk/window.h
- </set>
- <set var="GTK_SRC" hints="files">
- <!-- Generic implementations used by wxGTK: -->
- src/generic/accel.cpp
- src/generic/fdrepdlg.cpp
- <!-- Needed as long as we support GTK+ < 2.6 -->
- src/generic/filepickerg.cpp
- src/generic/listctrl.cpp
- src/generic/prntdlgg.cpp
- src/generic/statusbr.cpp
- <!-- GTK+ specific files: -->
- src/gtk/anybutton.cpp
- src/gtk/artgtk.cpp
- src/gtk/bmpbuttn.cpp
- src/gtk/button.cpp
- src/gtk/checkbox.cpp
- src/gtk/checklst.cpp
- src/gtk/choice.cpp
- src/gtk/collpane.cpp
- src/gtk/colordlg.cpp
- src/gtk/combobox.cpp
- src/gtk/control.cpp
- src/gtk/clrpicker.cpp
- src/gtk/dialog.cpp
- src/gtk/fontpicker.cpp
- src/gtk/filepicker.cpp
- src/gtk/dirdlg.cpp
- src/gtk/filedlg.cpp
- src/gtk/fontdlg.cpp
- src/gtk/frame.cpp
- src/gtk/gauge.cpp
- src/gtk/gnome/gvfs.cpp
- src/gtk/infobar.cpp
- src/gtk/listbox.cpp
- src/gtk/mdi.cpp
- src/gtk/menu.cpp
- src/gtk/mnemonics.cpp
- src/gtk/msgdlg.cpp
- src/gtk/nativewin.cpp
- src/gtk/notebook.cpp
- src/gtk/print.cpp
- src/gtk/radiobox.cpp
- src/gtk/radiobut.cpp
- src/gtk/scrolbar.cpp
- src/gtk/scrolwin.cpp
- src/gtk/slider.cpp
- src/gtk/spinbutt.cpp
- src/gtk/spinctrl.cpp
- src/gtk/statbmp.cpp
- src/gtk/statbox.cpp
- src/gtk/statline.cpp
- src/gtk/stattext.cpp
- src/gtk/toolbar.cpp
- src/gtk/textctrl.cpp
- src/gtk/textentry.cpp
- src/gtk/tglbtn.cpp
- src/gtk/treeentry_gtk.c
- </set>
- <set var="GTK2_SRC" hints="files">
- $(GTK_SRC)
- <!-- Generic implementations used by wxGPE: -->
- src/generic/fontdlgg.cpp
- </set>
- <set var="GTK_HDR" hints="files">
- wx/generic/fdrepdlg.h
- wx/generic/filepickerg.h
- wx/generic/listctrl.h
- wx/generic/statusbr.h
- wx/gtk/accel.h
- wx/gtk/anybutton.h
- wx/gtk/bmpbuttn.h
- wx/gtk/button.h
- wx/gtk/checkbox.h
- wx/gtk/checklst.h
- wx/gtk/chkconf.h
- wx/gtk/collpane.h
- wx/gtk/colordlg.h
- wx/gtk/choice.h
- wx/gtk/combobox.h
- wx/gtk/control.h
- wx/gtk/clrpicker.h
- wx/gtk/dialog.h
- wx/gtk/dirdlg.h
- wx/gtk/filectrl.h
- wx/gtk/filedlg.h
- wx/gtk/fontpicker.h
- wx/gtk/filepicker.h
- wx/gtk/fontdlg.h
- wx/gtk/frame.h
- wx/gtk/gauge.h
- wx/gtk/gnome/gvfs.h
- wx/gtk/infobar.h
- wx/gtk/listbox.h
- wx/gtk/mdi.h
- wx/gtk/menu.h
- wx/gtk/menuitem.h
- wx/gtk/msgdlg.h
- wx/gtk/notebook.h
- wx/gtk/print.h
- wx/gtk/radiobox.h
- wx/gtk/radiobut.h
- wx/gtk/scrolbar.h
- wx/gtk/scrolwin.h
- wx/gtk/slider.h
- wx/gtk/spinbutt.h
- wx/gtk/spinctrl.h
- wx/gtk/statbmp.h
- wx/gtk/statbox.h
- wx/gtk/statline.h
- wx/gtk/stattext.h
- wx/gtk/toolbar.h
- wx/gtk/textctrl.h
- wx/gtk/textentry.h
- wx/gtk/tglbtn.h
- </set>
- <set var="GTK2_HDR" hints="files">
- $(GTK_HDR)
- wx/generic/fontdlgg.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxGTK1 -->
- <!-- ====================================================================== -->
- <set var="GTK1_LOWLEVEL_SRC" hints="files">
- $(XWIN_LOWLEVEL_SRC)
- src/generic/icon.cpp
- src/generic/paletteg.cpp
- src/generic/textmeasure.cpp
- src/gtk1/app.cpp
- src/gtk1/bitmap.cpp
- src/gtk1/brush.cpp
- src/gtk1/clipbrd.cpp
- src/gtk1/colour.cpp
- src/gtk1/cursor.cpp
- src/gtk1/data.cpp
- src/gtk1/dataobj.cpp
- src/gtk1/dc.cpp
- src/gtk1/dcclient.cpp
- src/gtk1/dcmemory.cpp
- src/gtk1/dcscreen.cpp
- src/gtk1/dnd.cpp
- src/gtk1/evtloop.cpp
- src/gtk1/font.cpp
- src/gtk1/sockgtk.cpp
- src/gtk1/main.cpp
- src/gtk1/minifram.cpp
- src/gtk1/pen.cpp
- src/gtk1/popupwin.cpp
- src/gtk1/region.cpp
- src/gtk1/renderer.cpp
- src/gtk1/settings.cpp
- src/gtk1/timer.cpp
- src/gtk1/tooltip.cpp
- src/gtk1/toplevel.cpp
- src/gtk1/utilsgtk.cpp
- src/gtk1/win_gtk.c
- src/gtk1/window.cpp
- </set>
- <set var="GTK1_LOWLEVEL_HDR" hints="files">
- $(XWIN_LOWLEVEL_HDR)
- wx/generic/icon.h
- wx/generic/paletteg.h
- wx/gtk1/app.h
- wx/gtk1/bitmap.h
- wx/gtk1/brush.h
- wx/gtk1/clipbrd.h
- wx/gtk1/colour.h
- wx/gtk1/cursor.h
- wx/gtk1/dataform.h
- wx/gtk1/dataobj.h
- wx/gtk1/dataobj2.h
- wx/gtk1/dc.h
- wx/gtk1/dcclient.h
- wx/gtk1/dcmemory.h
- wx/gtk1/dcscreen.h
- wx/gtk1/dnd.h
- wx/gtk1/font.h
- wx/gtk1/minifram.h
- wx/gtk1/pen.h
- wx/gtk1/popupwin.h
- wx/gtk1/region.h
- wx/gtk1/tooltip.h
- wx/gtk1/toplevel.h
- wx/gtk1/win_gtk.h
- wx/gtk1/window.h
- </set>
- <set var="GTK1_SRC" hints="files">
- <!-- Generic implementations used by wxGTK1: -->
- src/generic/accel.cpp
- src/generic/clrpickerg.cpp
- src/generic/collpaneg.cpp
- src/generic/colrdlgg.cpp
- src/generic/dirdlgg.cpp
- src/generic/fdrepdlg.cpp
- src/generic/filedlgg.cpp
- src/generic/filepickerg.cpp
- src/generic/fontdlgg.cpp
- src/generic/fontpickerg.cpp
- src/generic/listctrl.cpp
- src/generic/prntdlgg.cpp
- src/generic/statusbr.cpp
- <!-- GTK1 specific files: -->
- src/gtk1/bmpbuttn.cpp
- src/gtk1/button.cpp
- src/gtk1/checkbox.cpp
- src/gtk1/checklst.cpp
- src/gtk1/choice.cpp
- src/gtk1/combobox.cpp
- src/gtk1/control.cpp
- src/gtk1/dialog.cpp
- src/gtk1/filedlg.cpp
- src/gtk1/fontdlg.cpp
- src/gtk1/frame.cpp
- src/gtk1/gauge.cpp
- src/gtk1/listbox.cpp
- src/gtk1/mdi.cpp
- src/gtk1/menu.cpp
- src/gtk1/mnemonics.cpp
- src/gtk1/notebook.cpp
- src/gtk1/radiobox.cpp
- src/gtk1/radiobut.cpp
- src/gtk1/scrolbar.cpp
- src/gtk1/scrolwin.cpp
- src/gtk1/slider.cpp
- src/gtk1/spinbutt.cpp
- src/gtk1/spinctrl.cpp
- src/gtk1/statbmp.cpp
- src/gtk1/statbox.cpp
- src/gtk1/statline.cpp
- src/gtk1/stattext.cpp
- src/gtk1/toolbar.cpp
- src/gtk1/textctrl.cpp
- src/gtk1/tglbtn.cpp
- </set>
- <set var="GTK1_HDR" hints="files">
- wx/generic/clrpickerg.h
- wx/generic/collpaneg.h
- wx/generic/colrdlgg.h
- wx/generic/dirdlgg.h
- wx/generic/fdrepdlg.h
- wx/generic/filedlgg.h
- wx/generic/filepickerg.h
- wx/generic/fontdlgg.h
- wx/generic/fontpickerg.h
- wx/generic/listctrl.h
- wx/generic/statusbr.h
- wx/gtk1/accel.h
- wx/gtk1/bmpbuttn.h
- wx/gtk1/button.h
- wx/gtk1/checkbox.h
- wx/gtk1/checklst.h
- wx/gtk1/choice.h
- wx/gtk1/combobox.h
- wx/gtk1/control.h
- wx/gtk1/dialog.h
- wx/gtk1/filedlg.h
- wx/gtk1/fontdlg.h
- wx/gtk1/frame.h
- wx/gtk1/gauge.h
- wx/gtk1/listbox.h
- wx/gtk1/mdi.h
- wx/gtk1/menu.h
- wx/gtk1/menuitem.h
- wx/gtk1/msgdlg.h
- wx/gtk1/notebook.h
- wx/gtk1/radiobox.h
- wx/gtk1/radiobut.h
- wx/gtk1/scrolbar.h
- wx/gtk1/scrolwin.h
- wx/gtk1/slider.h
- wx/gtk1/spinbutt.h
- wx/gtk1/spinctrl.h
- wx/gtk1/statbmp.h
- wx/gtk1/statbox.h
- wx/gtk1/statline.h
- wx/gtk1/stattext.h
- wx/gtk1/toolbar.h
- wx/gtk1/textctrl.h
- wx/gtk1/tglbtn.h
- wx/gtk1/treectrl.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxMotif -->
- <!-- ====================================================================== -->
- <set var="MOTIF_LOWLEVEL_SRC" hints="files">
- $(XWIN_LOWLEVEL_SRC)
- src/generic/textmeasure.cpp
- src/x11/bitmap.cpp
- src/x11/brush.cpp
- src/x11/palette.cpp
- src/x11/pen.cpp
- src/x11/region.cpp
- src/x11/utilsx.cpp
- </set>
- <set var="MOTIF_LOWLEVEL_HDR" hints="files">
- $(XWIN_LOWLEVEL_HDR)
- wx/x11/bitmap.h
- wx/x11/brush.h
- wx/x11/palette.h
- wx/x11/pen.h
- wx/x11/region.h
- </set>
- <set var="MOTIF_SRC" hints="files">
- src/motif/accel.cpp
- src/motif/app.cpp
- src/motif/bmpbuttn.cpp
- src/motif/bmpmotif.cpp
- src/motif/button.cpp
- src/motif/checkbox.cpp
- src/motif/checklst.cpp
- src/motif/choice.cpp
- src/motif/clipbrd.cpp
- src/motif/colour.cpp
- src/motif/combobox.cpp
- src/motif/combobox_native.cpp
- src/motif/control.cpp
- src/motif/cursor.cpp
- src/motif/data.cpp
- src/motif/dataobj.cpp
- src/motif/dc.cpp
- src/motif/dcclient.cpp
- src/motif/dcmemory.cpp
- src/motif/dcscreen.cpp
- src/motif/dialog.cpp
- src/motif/evtloop.cpp
- src/motif/filedlg.cpp
- src/motif/font.cpp
- src/motif/frame.cpp
- src/motif/gauge.cpp
- src/motif/sockmot.cpp
- src/motif/icon.cpp
- src/motif/listbox.cpp
- src/motif/main.cpp
- src/motif/menu.cpp
- src/motif/menuitem.cpp
- src/motif/minifram.cpp
- src/motif/msgdlg.cpp
- src/motif/popupwin.cpp
- src/motif/radiobox.cpp
- src/motif/radiobut.cpp
- src/motif/scrolbar.cpp
- src/motif/settings.cpp
- src/motif/slider.cpp
- src/motif/spinbutt.cpp
- src/motif/statbmp.cpp
- src/motif/statbox.cpp
- src/motif/stattext.cpp
- src/motif/textctrl.cpp
- src/motif/textentry.cpp
- src/motif/timer.cpp
- src/motif/toolbar.cpp
- src/motif/toplevel.cpp
- src/motif/utils.cpp
- src/motif/window.cpp
- src/motif/xmcombo/xmcombo.c
- <!-- Generic files used by wxMotif: -->
- src/generic/clrpickerg.cpp
- src/generic/collpaneg.cpp
- src/generic/colrdlgg.cpp
- src/generic/dirdlgg.cpp
- src/generic/fdrepdlg.cpp
- src/generic/filepickerg.cpp
- src/generic/fontdlgg.cpp
- src/generic/fontpickerg.cpp
- src/generic/listctrl.cpp
- src/generic/mdig.cpp
- src/generic/notebook.cpp
- src/generic/prntdlgg.cpp
- src/generic/statline.cpp
- src/generic/statusbr.cpp
- src/generic/tabg.cpp
- </set>
- <set var="MOTIF_HDR" hints="files">
- wx/generic/clrpickerg.h
- wx/generic/collpaneg.h
- wx/generic/colrdlgg.h
- wx/generic/ctrlsub.h
- wx/generic/dirdlgg.h
- wx/generic/fdrepdlg.h
- wx/generic/filepickerg.h
- wx/generic/fontdlgg.h
- wx/generic/fontpickerg.h
- wx/generic/listctrl.h
- wx/generic/mdig.h
- wx/generic/notebook.h
- wx/generic/prntdlgg.h
- wx/generic/statline.h
- wx/generic/statusbr.h
- wx/generic/tabg.h
- wx/motif/accel.h
- wx/motif/app.h
- wx/motif/bmpbuttn.h
- wx/motif/bmpmotif.h
- wx/motif/button.h
- wx/motif/checkbox.h
- wx/motif/checklst.h
- wx/motif/chkconf.h
- wx/motif/choice.h
- wx/motif/clipbrd.h
- wx/motif/colour.h
- wx/motif/combobox.h
- wx/motif/control.h
- wx/motif/ctrlsub.h
- wx/motif/cursor.h
- wx/motif/dataform.h
- wx/motif/dataobj.h
- wx/motif/dataobj2.h
- wx/motif/dc.h
- wx/motif/dcclient.h
- wx/motif/dcmemory.h
- wx/motif/dcprint.h
- wx/motif/dcscreen.h
- wx/motif/dialog.h
- wx/motif/dnd.h
- wx/motif/filedlg.h
- wx/motif/font.h
- wx/motif/frame.h
- wx/motif/gauge.h
- wx/motif/icon.h
- wx/motif/listbox.h
- wx/motif/menu.h
- wx/motif/menuitem.h
- wx/motif/minifram.h
- wx/motif/msgdlg.h
- wx/motif/popupwin.h
- wx/motif/print.h
- wx/motif/private.h
- wx/motif/radiobox.h
- wx/motif/radiobut.h
- wx/motif/scrolbar.h
- wx/motif/slider.h
- wx/motif/spinbutt.h
- wx/motif/statbmp.h
- wx/motif/statbox.h
- wx/motif/stattext.h
- wx/motif/textctrl.h
- wx/motif/textentry.h
- wx/motif/tglbtn.h
- wx/motif/toolbar.h
- wx/motif/toplevel.h
- wx/motif/window.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxX11 -->
- <!-- ====================================================================== -->
- <set var="X11_LOWLEVEL_SRC" hints="files">
- $(XWIN_LOWLEVEL_SRC)
- src/generic/icon.cpp
- src/generic/textmeasure.cpp
- src/generic/timer.cpp
- src/x11/app.cpp
- src/x11/bitmap.cpp
- src/x11/brush.cpp
- src/x11/clipbrd.cpp
- src/x11/colour.cpp
- src/x11/cursor.cpp
- src/x11/data.cpp
- src/x11/dataobj.cpp
- src/x11/dc.cpp
- src/x11/dcclient.cpp
- src/x11/dcmemory.cpp
- src/x11/dcscreen.cpp
- src/x11/evtloop.cpp
- src/x11/font.cpp
- src/x11/minifram.cpp
- src/x11/nanox.c
- src/x11/palette.cpp
- src/x11/pen.cpp
- src/x11/popupwin.cpp
- src/x11/region.cpp
- src/x11/reparent.cpp
- src/x11/settings.cpp
- src/x11/toplevel.cpp
- src/x11/utils.cpp
- src/x11/utilsx.cpp
- src/x11/window.cpp
- </set>
- <set var="X11_LOWLEVEL_HDR" hints="files">
- $(XWIN_LOWLEVEL_HDR)
- wx/generic/icon.h
- wx/x11/app.h
- wx/x11/bitmap.h
- wx/x11/brush.h
- wx/x11/chkconf.h
- wx/x11/clipbrd.h
- wx/x11/colour.h
- wx/x11/cursor.h
- wx/x11/dataform.h
- wx/x11/dataobj.h
- wx/x11/dataobj2.h
- wx/x11/dc.h
- wx/x11/dcclient.h
- wx/x11/dcmemory.h
- wx/x11/dcprint.h
- wx/x11/dcscreen.h
- wx/x11/dnd.h
- wx/x11/font.h
- wx/x11/minifram.h
- wx/x11/palette.h
- wx/x11/pen.h
- wx/x11/popupwin.h
- wx/x11/print.h
- wx/x11/private.h
- wx/x11/privx.h
- wx/x11/region.h
- wx/x11/reparent.h
- wx/x11/textctrl.h
- wx/x11/toplevel.h
- wx/x11/window.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxMSW -->
- <!-- ====================================================================== -->
- <set var="MSW_LOWLEVEL_SRC" hints="files">
- src/msw/ole/activex.cpp
- src/msw/app.cpp
- src/msw/bitmap.cpp
- src/msw/brush.cpp
- src/msw/caret.cpp
- src/msw/clipbrd.cpp
- src/msw/colour.cpp
- src/msw/cursor.cpp
- src/msw/data.cpp
- src/msw/dc.cpp
- src/msw/dcclient.cpp
- src/msw/dcmemory.cpp
- src/msw/dcprint.cpp
- src/msw/dcscreen.cpp
- src/msw/dialup.cpp
- src/msw/dib.cpp
- src/msw/display.cpp
- src/msw/enhmeta.cpp
- src/msw/font.cpp
- src/msw/fontenum.cpp
- src/msw/fontutil.cpp
- src/msw/gdiimage.cpp
- src/msw/gdiobj.cpp
- src/msw/gdiplus.cpp
- src/msw/graphics.cpp
- src/msw/icon.cpp
- src/msw/imaglist.cpp
- src/msw/minifram.cpp
- src/msw/nonownedwnd.cpp
- src/msw/ole/dataobj.cpp
- src/msw/ole/dropsrc.cpp
- src/msw/ole/droptgt.cpp
- src/msw/ole/oleutils.cpp
- src/msw/ole/safearray.cpp
- src/msw/palette.cpp
- src/msw/pen.cpp
- src/msw/popupwin.cpp
- src/msw/printdlg.cpp
- src/msw/printwin.cpp
- src/msw/region.cpp
- src/msw/renderer.cpp
- src/msw/settings.cpp
- src/msw/textmeasure.cpp
- src/msw/tooltip.cpp
- src/msw/toplevel.cpp
- src/msw/uiaction.cpp
- src/msw/utilsgui.cpp
- src/msw/utilswin.cpp
- src/msw/uxtheme.cpp
- src/msw/window.cpp
- </set>
- <set var="MSW_LOWLEVEL_HDR" hints="files">
- wx/msw/nonownedwnd.h
- wx/msw/ole/activex.h
- wx/msw/popupwin.h
- wx/msw/uxtheme.h
- wx/msw/uxthemep.h
- wx/msw/htmlhelp.h
- </set>
- <set var="MSW_DESKTOP_LOWLEVEL_SRC" hints="files">
- src/msw/helpchm.cpp
- src/msw/helpwin.cpp
- src/msw/ole/automtn.cpp
- src/msw/ole/uuid.cpp
- </set>
- <set var="MSW_DESKTOP_LOWLEVEL_HDR" hints="files">
- wx/msw/helpchm.h
- wx/msw/helpwin.h
- </set>
- <set var="MSW_SRC" hints="files">
- src/generic/clrpickerg.cpp
- src/generic/collpaneg.cpp
- src/generic/filepickerg.cpp
- src/generic/fontpickerg.cpp
- src/generic/statusbr.cpp
- src/generic/prntdlgg.cpp
- src/msw/accel.cpp
- src/msw/anybutton.cpp
- src/msw/artmsw.cpp
- src/msw/bmpbuttn.cpp
- src/msw/button.cpp
- src/msw/checkbox.cpp
- src/msw/choice.cpp
- src/msw/colordlg.cpp
- src/msw/combo.cpp
- src/msw/combobox.cpp
- src/msw/control.cpp
- src/msw/dialog.cpp
- src/msw/dirdlg.cpp
- src/msw/dragimag.cpp
- src/msw/evtloop.cpp
- src/msw/filedlg.cpp
- src/msw/frame.cpp
- src/msw/gauge.cpp
- src/msw/headerctrl.cpp
- src/msw/iniconf.cpp
- src/msw/listbox.cpp
- src/msw/listctrl.cpp
- src/msw/mdi.cpp
- src/msw/menu.cpp
- src/msw/menuitem.cpp
- src/msw/metafile.cpp
- src/msw/msgdlg.cpp
- src/msw/nativdlg.cpp
- src/msw/nativewin.cpp
- src/msw/notebook.cpp
- src/msw/ole/access.cpp
- src/msw/ownerdrw.cpp
- src/msw/panel.cpp
- src/msw/progdlg.cpp
- src/msw/radiobox.cpp
- src/msw/radiobut.cpp
- src/msw/richmsgdlg.cpp
- src/msw/scrolbar.cpp
- src/msw/slider.cpp
- src/msw/spinbutt.cpp
- src/msw/spinctrl.cpp
- src/msw/statbmp.cpp
- src/msw/statbox.cpp
- src/msw/statusbar.cpp
- src/msw/statline.cpp
- src/msw/stattext.cpp
- src/msw/toolbar.cpp
- src/msw/textctrl.cpp
- src/msw/textentry.cpp
- src/msw/tglbtn.cpp
- src/msw/treectrl.cpp
- </set>
- <set var="MSW_HDR" hints="files">
- wx/generic/clrpickerg.h
- wx/generic/collpaneg.h
- wx/generic/filepickerg.h
- wx/generic/fontpickerg.h
- wx/msw/accel.h
- wx/msw/anybutton.h
- wx/msw/app.h
- wx/msw/bitmap.h
- wx/msw/bmpbuttn.h
- wx/msw/brush.h
- wx/msw/button.h
- wx/msw/caret.h
- wx/msw/checkbox.h
- wx/msw/choice.h
- wx/msw/clipbrd.h
- wx/msw/colordlg.h
- wx/msw/colour.h
- wx/msw/combo.h
- wx/msw/combobox.h
- wx/msw/control.h
- wx/msw/ctrlsub.h
- wx/msw/cursor.h
- wx/msw/custombgwin.h
- wx/msw/dc.h
- wx/msw/dcclient.h
- wx/msw/dcmemory.h
- wx/msw/dcprint.h
- wx/msw/dcscreen.h
- wx/msw/dialog.h
- wx/msw/dib.h
- wx/msw/dirdlg.h
- wx/msw/dragimag.h
- wx/msw/enhmeta.h
- wx/msw/evtloop.h
- wx/msw/filedlg.h
- wx/msw/font.h
- wx/msw/frame.h
- wx/msw/gauge.h
- wx/msw/gdiimage.h
- wx/msw/headerctrl.h
- wx/msw/icon.h
- wx/msw/imaglist.h
- wx/msw/iniconf.h
- wx/msw/init.h
- wx/msw/listbox.h
- wx/msw/listctrl.h
- wx/msw/mdi.h
- wx/msw/menu.h
- wx/msw/menuitem.h
- wx/msw/metafile.h
- wx/msw/minifram.h
- wx/msw/missing.h
- wx/msw/msgdlg.h
- wx/msw/msvcrt.h
- wx/msw/notebook.h
- wx/msw/ole/access.h
- wx/msw/ole/dataform.h
- wx/msw/ole/dataobj.h
- wx/msw/ole/dataobj2.h
- wx/msw/ole/dropsrc.h
- wx/msw/ole/droptgt.h
- wx/msw/ole/oleutils.h
- wx/msw/ole/safearray.h
- wx/msw/ownerdrw.h
- wx/msw/palette.h
- wx/msw/panel.h
- wx/msw/pen.h
- wx/msw/printdlg.h
- wx/msw/printwin.h
- wx/msw/progdlg.h
- wx/msw/radiobox.h
- wx/msw/radiobut.h
- wx/msw/region.h
- wx/msw/rcdefs.h
- wx/msw/richmsgdlg.h
- wx/msw/scrolbar.h
- wx/msw/slider.h
- wx/msw/spinbutt.h
- wx/msw/spinctrl.h
- wx/msw/statbmp.h
- wx/msw/statbox.h
- wx/msw/statusbar.h
- wx/msw/statline.h
- wx/msw/stattext.h
- wx/msw/toolbar.h
- wx/msw/textctrl.h
- wx/msw/textentry.h
- wx/msw/tglbtn.h
- wx/msw/tooltip.h
- wx/msw/toplevel.h
- wx/msw/treectrl.h
- wx/msw/window.h
- <!-- Resources must be installed together with headers: -->
- wx/msw/wx.manifest
- wx/msw/amd64.manifest
- wx/msw/ia64.manifest
- wx/msw/wx.rc
- <!-- bitmaps -->
- wx/msw/colours.bmp
- wx/msw/csquery.bmp
- <!-- cursors -->
- wx/msw/blank.cur
- wx/msw/bullseye.cur
- wx/msw/cross.cur
- wx/msw/hand.cur
- wx/msw/magnif1.cur
- wx/msw/pbrush.cur
- wx/msw/pencil.cur
- wx/msw/pntleft.cur
- wx/msw/pntright.cur
- wx/msw/roller.cur
- <!-- icons -->
- wx/msw/cdrom.ico
- wx/msw/child.ico
- wx/msw/computer.ico
- wx/msw/drive.ico
- wx/msw/file1.ico
- wx/msw/floppy.ico
- wx/msw/folder1.ico
- wx/msw/folder2.ico
- wx/msw/mdi.ico
- wx/msw/question.ico
- wx/msw/removble.ico
- wx/msw/std.ico
- </set>
- <!-- Files used only by desktop MSW port, but *not* WindowsCE one: -->
- <set var="MSW_DESKTOP_SRC" hints="files">
- src/msw/checklst.cpp
- src/msw/fdrepdlg.cpp
- src/msw/fontdlg.cpp
- </set>
- <set var="MSW_DESKTOP_HDR" hints="files">
- wx/msw/checklst.h
- wx/msw/fdrepdlg.h
- wx/msw/fontdlg.h
- wx/msw/ole/automtn.h
- wx/msw/ole/uuid.h
- </set>
- <!-- Files used by WindowsCE port but not by desktop MSW port: -->
- <set var="WINCE_SRC" hints="files">
- src/generic/dirdlgg.cpp
- src/generic/fdrepdlg.cpp
- src/generic/filedlgg.cpp
- src/generic/fontdlgg.cpp
- src/msw/wince/checklst.cpp
- src/msw/wince/choicece.cpp
- src/msw/wince/crt.cpp
- src/msw/wince/filedlgwce.cpp
- src/msw/wince/filefnwce.cpp
- src/msw/wince/helpwce.cpp
- src/msw/wince/menuce.cpp
- src/msw/wince/tbarwce.cpp
- src/msw/wince/textctrlce.cpp
- </set>
- <set var="WINCE_HDR" hints="files">
- wx/generic/fdrepdlg.h
- wx/generic/filedlgg.h
- wx/generic/fontdlgg.h
- wx/msw/wince/checklst.h
- wx/msw/wince/choicece.h
- wx/msw/wince/helpwce.h
- wx/msw/wince/libraries.h
- wx/msw/wince/missing.h
- wx/msw/wince/tbarwce.h
- wx/msw/wince/textctrlce.h
- wx/msw/wince/resources.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxDFB -->
- <!-- ====================================================================== -->
- <set var="DFB_LOWLEVEL_SRC" hints="files">
- src/common/fontmgrcmn.cpp
- src/generic/caret.cpp
- src/generic/colour.cpp
- src/generic/icon.cpp
- src/generic/imaglist.cpp
- src/generic/mask.cpp
- src/generic/textmeasure.cpp
- src/dfb/app.cpp
- src/dfb/bitmap.cpp
- src/dfb/brush.cpp
- src/dfb/cursor.cpp
- <!-- src/dfb/data.cpp -->
- src/dfb/dc.cpp
- src/dfb/dcclient.cpp
- src/dfb/dcmemory.cpp
- src/dfb/dcscreen.cpp
- src/dfb/evtloop.cpp
- src/dfb/font.cpp
- src/dfb/fontenum.cpp
- src/dfb/fontmgr.cpp
- src/dfb/nonownedwnd.cpp
- src/dfb/overlay.cpp
- src/dfb/pen.cpp
- src/dfb/region.cpp
- src/dfb/settings.cpp
- src/dfb/toplevel.cpp
- src/dfb/utils.cpp
- src/dfb/window.cpp
- src/dfb/wrapdfb.cpp
- </set>
- <set var="DFB_LOWLEVEL_HDR" hints="files">
- wx/generic/caret.h
- wx/generic/colour.h
- wx/generic/icon.h
- wx/generic/imaglist.h
- wx/generic/mask.h
- wx/dfb/app.h
- wx/dfb/bitmap.h
- wx/dfb/brush.h
- wx/dfb/chkconf.h
- wx/dfb/cursor.h
- wx/dfb/dc.h
- wx/dfb/dcclient.h
- wx/dfb/dcmemory.h
- wx/dfb/dcscreen.h
- wx/dfb/dfbptr.h
- wx/dfb/evtloop.h
- wx/dfb/font.h
- wx/dfb/nonownedwnd.h
- wx/dfb/pen.h
- wx/dfb/popupwin.h
- wx/dfb/private.h
- wx/dfb/region.h
- wx/dfb/toplevel.h
- wx/dfb/window.h
- wx/dfb/wrapdfb.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxOS/2 -->
- <!-- ====================================================================== -->
- <set var="OS2_LOWLEVEL_SRC" hints="files">
- <!-- wxUniv builds not supported under OS/2 -->
- </set>
- <set var="OS2_LOWLEVEL_HDR" hints="files">
- </set>
- <set var="OS2_SRC" hints="files">
- <!-- Generic implementations used by wxOS2: -->
- src/generic/caret.cpp
- src/generic/clrpickerg.cpp
- src/generic/collpaneg.cpp
- src/generic/colrdlgg.cpp
- src/generic/dirdlgg.cpp
- src/generic/fdrepdlg.cpp
- src/generic/filepickerg.cpp
- src/generic/fontpickerg.cpp
- src/generic/imaglist.cpp
- src/generic/listctrl.cpp
- src/generic/mdig.cpp
- src/generic/prntdlgg.cpp
- src/generic/statusbr.cpp
- src/generic/textmeasure.cpp
- <!-- OS/2 specific files: -->
- src/os2/accel.cpp
- src/os2/app.cpp
- src/os2/bitmap.cpp
- src/os2/bmpbuttn.cpp
- src/os2/brush.cpp
- src/os2/button.cpp
- src/os2/checkbox.cpp
- src/os2/checklst.cpp
- src/os2/choice.cpp
- src/os2/clipbrd.cpp
- src/os2/colour.cpp
- src/os2/combobox.cpp
- src/os2/control.cpp
- src/os2/cursor.cpp
- src/os2/data.cpp
- src/os2/dataobj.cpp
- src/os2/dc.cpp
- src/os2/dcclient.cpp
- src/os2/dcmemory.cpp
- src/os2/dcprint.cpp
- src/os2/dcscreen.cpp
- src/os2/dialog.cpp
- src/os2/dnd.cpp
- src/os2/evtloop.cpp
- src/os2/filedlg.cpp
- src/os2/font.cpp
- src/os2/fontdlg.cpp
- src/os2/fontenum.cpp
- src/os2/fontutil.cpp
- src/os2/frame.cpp
- src/os2/gauge.cpp
- src/os2/gdiimage.cpp
- src/os2/sockpm.cpp
- src/os2/helpwin.cpp
- src/os2/icon.cpp
- src/os2/iniconf.cpp
- src/os2/listbox.cpp
- src/os2/main.cpp
- src/os2/menu.cpp
- src/os2/menuitem.cpp
- src/os2/metafile.cpp
- src/os2/minifram.cpp
- src/os2/msgdlg.cpp
- src/os2/nativdlg.cpp
- src/os2/notebook.cpp
- src/os2/ownerdrw.cpp
- src/os2/palette.cpp
- src/os2/pen.cpp
- src/os2/popupwin.cpp
- src/os2/print.cpp
- src/os2/radiobox.cpp
- src/os2/radiobut.cpp
- src/os2/region.cpp
- src/os2/scrolbar.cpp
- src/os2/settings.cpp
- src/os2/slider.cpp
- src/os2/spinbutt.cpp
- src/os2/spinctrl.cpp
- src/os2/statbmp.cpp
- src/os2/statbox.cpp
- src/os2/statline.cpp
- src/os2/stattext.cpp
- src/os2/textctrl.cpp
- src/os2/textentry.cpp
- src/os2/tglbtn.cpp
- src/os2/timer.cpp
- src/os2/toolbar.cpp
- src/os2/tooltip.cpp
- src/os2/toplevel.cpp
- src/os2/utilsgui.cpp
- src/os2/window.cpp
- </set>
- <set var="OS2_HDR" hints="files">
- wx/generic/caret.h
- wx/generic/clrpickerg.h
- wx/generic/collpaneg.h
- wx/generic/colrdlgg.h
- wx/generic/dirdlgg.h
- wx/generic/fdrepdlg.h
- wx/generic/listctrl.h
- wx/generic/mdig.h
- wx/generic/statusbr.h
- wx/os2/accel.h
- wx/os2/app.h
- wx/os2/bitmap.h
- wx/os2/bmpbuttn.h
- wx/os2/brush.h
- wx/os2/button.h
- wx/os2/checkbox.h
- wx/os2/checklst.h
- wx/os2/choice.h
- wx/os2/clipbrd.h
- wx/os2/colour.h
- wx/os2/combobox.h
- wx/os2/control.h
- wx/os2/cursor.h
- wx/os2/dataform.h
- wx/os2/dataobj.h
- wx/os2/dataobj2.h
- wx/os2/dc.h
- wx/os2/dcclient.h
- wx/os2/dcmemory.h
- wx/os2/dcprint.h
- wx/os2/dcscreen.h
- wx/os2/dialog.h
- wx/os2/dnd.h
- wx/os2/filedlg.h
- wx/os2/font.h
- wx/os2/fontdlg.h
- wx/os2/frame.h
- wx/os2/gauge.h
- wx/os2/gdiimage.h
- wx/os2/helpwin.h
- wx/os2/icon.h
- wx/os2/iniconf.h
- wx/os2/listbox.h
- wx/os2/menu.h
- wx/os2/menuitem.h
- wx/os2/metafile.h
- wx/os2/minifram.h
- wx/os2/msgdlg.h
- wx/os2/notebook.h
- wx/os2/ownerdrw.h
- wx/os2/palette.h
- wx/os2/pen.h
- wx/os2/pnghand.h
- wx/os2/pngread.h
- wx/os2/print.h
- wx/os2/radiobox.h
- wx/os2/radiobut.h
- wx/os2/region.h
- wx/os2/scrolbar.h
- wx/os2/settings.h
- wx/os2/slider.h
- wx/os2/spinbutt.h
- wx/os2/spinctrl.h
- wx/os2/statbmp.h
- wx/os2/statbox.h
- wx/os2/statline.h
- wx/os2/stattext.h
- wx/os2/textctrl.h
- wx/os2/textentry.h
- wx/os2/tglbtn.h
- wx/os2/toolbar.h
- wx/os2/tooltip.h
- wx/os2/toplevel.h
- wx/os2/window.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxOSX Common -->
- <!-- ====================================================================== -->
- <set var="OSX_LOWLEVEL_SRC" hints="files">
- <!-- Shared wxMac and wxCocoa files -->
- <if cond="PLATFORM_MACOSX=='1'">
- src/osx/artmac.cpp
- src/osx/brush.cpp
- src/osx/dialog_osx.cpp
- src/osx/fontutil.cpp
- src/osx/imaglist.cpp
- src/osx/minifram.cpp
- src/osx/nonownedwnd_osx.cpp
- src/osx/palette.cpp
- src/osx/pen.cpp
- src/osx/toplevel_osx.cpp
- src/osx/uiaction_osx.cpp
- src/osx/utils_osx.cpp
- <!-- src/osx/treectrl.cpp -->
- src/osx/window_osx.cpp
- src/osx/core/bitmap.cpp
- src/osx/core/colour.cpp
- src/osx/core/dcmemory.cpp
- src/osx/core/display.cpp
- src/osx/core/fontenum.cpp
- src/osx/core/hid.cpp
- src/osx/core/printmac.cpp
- src/osx/core/timer.cpp
- src/osx/core/utilsexc_cf.cpp
- </if>
- </set>
- <set var="OSX_LOWLEVEL_HDR" hints="files">
- </set>
- <!--
- <set var="OSX_LOWLEVEL_SRC" hints="files">
- <if cond="PLATFORM_MACOSX=='1'">$(OSX_LOWLEVEL_SRC)</if>
- </set>
- <set var="OSX_LOWLEVEL_HDR" hints="files">
- <if cond="PLATFORM_MACOSX=='1'">$(OSX_LOWLEVEL_HDR)</if>
- </set>
- -->
- <set var="OSX_CARBON_COCOA_SRC" hints="files">
- <if cond="PLATFORM_MACOSX=='1'">
- <!-- Common controls implementation -->
- src/osx/anybutton_osx.cpp
- src/osx/bmpbuttn_osx.cpp
- src/osx/button_osx.cpp
- src/osx/checkbox_osx.cpp
- src/osx/checklst_osx.cpp
- src/osx/choice_osx.cpp
- src/osx/combobox_osx.cpp
- src/osx/dnd_osx.cpp
- src/osx/gauge_osx.cpp
- src/osx/listbox_osx.cpp
- src/osx/menu_osx.cpp
- src/osx/menuitem_osx.cpp
- src/osx/notebook_osx.cpp
- src/osx/printdlg_osx.cpp
- src/osx/radiobox_osx.cpp
- src/osx/radiobut_osx.cpp
- src/osx/scrolbar_osx.cpp
- src/osx/slider_osx.cpp
- src/osx/spinbutt_osx.cpp
- src/osx/srchctrl_osx.cpp
- src/osx/statbox_osx.cpp
- src/osx/statline_osx.cpp
- src/osx/stattext_osx.cpp
- src/osx/textentry_osx.cpp
- src/osx/textctrl_osx.cpp
- src/osx/tglbtn_osx.cpp
- src/osx/toolbar_osx.cpp
- <!-- wxWebKit files -->
- src/html/htmlctrl/webkit/webkit.mm
- <!-- Native color/font dialogs -->
- src/osx/carbon/colordlgosx.mm
- src/osx/carbon/fontdlgosx.mm
- <!-- other shared files -->
- src/osx/accel.cpp
- src/osx/carbon/clipbrd.cpp
- src/osx/carbon/cursor.cpp
- src/osx/carbon/fontdlg.cpp
- src/osx/carbon/gdiobj.cpp
- src/osx/carbon/icon.cpp
- src/osx/carbon/app.cpp
- src/osx/carbon/combobox.cpp
- src/osx/carbon/control.cpp
- src/osx/carbon/dataobj.cpp
- src/osx/carbon/dcclient.cpp
- src/osx/carbon/dcprint.cpp
- src/osx/carbon/dcscreen.cpp
- src/osx/core/glgrab.cpp
- src/osx/carbon/graphics.cpp
- src/osx/carbon/font.cpp
- src/osx/carbon/frame.cpp
- src/osx/carbon/mdi.cpp
- src/osx/carbon/metafile.cpp
- src/osx/carbon/overlay.cpp
- src/osx/carbon/popupwin.cpp
- src/osx/carbon/renderer.cpp
- src/osx/carbon/settings.cpp
- src/osx/carbon/statbrma.cpp
- src/osx/carbon/region.cpp
- <!-- cocoa bridge -->
- src/osx/carbon/utilscocoa.mm
- <!-- Generic implementations used by wxOSX: -->
- src/generic/caret.cpp
- src/generic/clrpickerg.cpp
- src/generic/collpaneg.cpp
- src/generic/colrdlgg.cpp
- src/generic/dirdlgg.cpp
- src/generic/fdrepdlg.cpp
- src/generic/filedlgg.cpp
- src/generic/filepickerg.cpp
- src/generic/fontdlgg.cpp
- src/generic/fontpickerg.cpp
- src/generic/listctrl.cpp
- src/generic/prntdlgg.cpp
- src/generic/statusbr.cpp
- src/generic/textmeasure.cpp
- </if>
- </set>
- <!-- Header files like wx/osx/foo.h which include wx/osx/carbon/foo.h -->
- <set var="OSX_SHARED_HDR" hints="files">
- <!-- wxWebKit headers -->
- wx/html/webkit.h
- <!-- other shared headers -->
- wx/osx/accel.h
- wx/osx/anybutton.h
- wx/osx/app.h
- wx/osx/bitmap.h
- wx/osx/bmpbuttn.h
- wx/osx/brush.h
- wx/osx/button.h
- wx/osx/checkbox.h
- wx/osx/checklst.h
- wx/osx/chkconf.h
- wx/osx/choice.h
- wx/osx/clipbrd.h
- wx/osx/colordlg.h
- wx/osx/colour.h
- wx/osx/combobox.h
- wx/osx/control.h
- wx/osx/cursor.h
- wx/osx/dataform.h
- wx/osx/dataobj.h
- wx/osx/dataobj2.h
- wx/osx/dc.h
- wx/osx/dcclient.h
- wx/osx/dcmemory.h
- wx/osx/dcprint.h
- wx/osx/dcscreen.h
- wx/osx/dialog.h
- wx/osx/dirdlg.h
- wx/osx/dnd.h
- wx/osx/evtloop.h
- wx/osx/evtloopsrc.h
- wx/osx/filedlg.h
- wx/osx/font.h
- wx/osx/fontdlg.h
- wx/osx/frame.h
- wx/osx/gauge.h
- wx/osx/helpxxxx.h
- wx/osx/icon.h
- wx/osx/imaglist.h
- wx/osx/listbox.h
- wx/osx/listctrl.h
- wx/osx/mdi.h
- wx/osx/menu.h
- wx/osx/menuitem.h
- wx/osx/metafile.h
- wx/osx/mimetype.h
- wx/osx/minifram.h
- wx/osx/msgdlg.h
- wx/osx/nonownedwnd.h
- wx/osx/notebook.h
- wx/osx/palette.h
- wx/osx/pen.h
- wx/osx/popupwin.h
- wx/osx/pnghand.h
- wx/osx/pngread.h
- wx/osx/printdlg.h
- wx/osx/printmac.h
- wx/osx/private.h
- wx/osx/radiobox.h
- wx/osx/radiobut.h
- wx/osx/region.h
- wx/osx/scrolbar.h
- wx/osx/slider.h
- wx/osx/spinbutt.h
- wx/osx/srchctrl.h
- wx/osx/statbmp.h
- wx/osx/statbox.h
- wx/osx/statline.h
- wx/osx/stattext.h
- wx/osx/statusbr.h
- wx/osx/taskbarosx.h
- wx/osx/textctrl.h
- wx/osx/textentry.h
- wx/osx/tglbtn.h
- wx/osx/toolbar.h
- wx/osx/tooltip.h
- wx/osx/toplevel.h
- wx/osx/treectrl.h
- wx/osx/uma.h
- wx/osx/window.h
- <!-- Generic implementations used by wxOSX: -->
- wx/generic/caret.h
- wx/generic/clrpickerg.h
- wx/generic/collpaneg.h
- wx/generic/colrdlgg.h
- wx/generic/dirdlgg.h
- wx/generic/fdrepdlg.h
- wx/generic/filedlgg.h
- wx/generic/filepickerg.h
- wx/generic/fontdlgg.h
- wx/generic/fontpickerg.h
- wx/generic/listctrl.h
- wx/generic/prntdlgg.h
- wx/generic/statusbr.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxOSX/Carbon -->
- <!-- ====================================================================== -->
- <set var="OSX_CARBON_SRC" hints="files">
- <!-- carbon files -->
- $(OSX_CARBON_COCOA_SRC)
- src/osx/carbon/anybutton.cpp
- src/osx/carbon/bmpbuttn.cpp
- src/osx/carbon/button.cpp
- src/osx/carbon/checkbox.cpp
- src/osx/carbon/choice.cpp
- src/osx/carbon/colordlg.cpp
- src/osx/carbon/dialog.cpp
- src/osx/carbon/dirdlg.cpp
- src/osx/carbon/dnd.cpp
- src/osx/carbon/evtloop.cpp
- src/osx/carbon/filedlg.cpp
- src/osx/carbon/gauge.cpp
- src/osx/carbon/listbox.cpp
- src/osx/carbon/listctrl_mac.cpp
- src/osx/carbon/menu.cpp
- src/osx/carbon/menuitem.cpp
- src/osx/carbon/msgdlg.cpp
- src/osx/carbon/nonownedwnd.cpp
- src/osx/carbon/notebmac.cpp
- src/osx/carbon/printdlg.cpp
- src/osx/carbon/radiobut.cpp
- src/osx/carbon/scrolbar.cpp
- src/osx/carbon/slider.cpp
- src/osx/carbon/spinbutt.cpp
- src/osx/carbon/srchctrl.cpp
- src/osx/carbon/statbmp.cpp
- src/osx/carbon/statbox.cpp
- src/osx/carbon/statlmac.cpp
- src/osx/carbon/stattext.cpp
- src/osx/carbon/textctrl.cpp
- src/osx/carbon/tglbtn.cpp
- src/osx/carbon/toolbar.cpp
- src/osx/carbon/tooltip.cpp
- src/osx/carbon/window.cpp
- </set>
- <!-- wxMac Carbon header files -->
- <set var="OSX_CARBON_HDR" hints="files">
- <!-- core files -->
- wx/osx/core/colour.h
- <!-- carbon files -->
- wx/osx/carbon/chkconf.h
- wx/osx/carbon/evtloop.h
- wx/osx/carbon/private.h
- wx/osx/carbon/region.h
- wx/osx/carbon/statbmp.h
- wx/osx/carbon/uma.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxOSX/Cocoa -->
- <!-- ====================================================================== -->
- <set var="OSX_COCOA_SRC" hints="files">
- $(OSX_CARBON_COCOA_SRC)
- src/osx/cocoa/anybutton.mm
- src/osx/cocoa/button.mm
- src/osx/cocoa/checkbox.mm
- src/osx/cocoa/choice.mm
- src/osx/cocoa/colour.mm
- src/osx/cocoa/combobox.mm
- src/osx/cocoa/dialog.mm
- src/osx/cocoa/dirdlg.mm
- src/osx/cocoa/dnd.mm
- src/osx/cocoa/evtloop.mm
- src/osx/cocoa/filedlg.mm
- src/osx/cocoa/gauge.mm
- src/osx/cocoa/listbox.mm
- src/osx/cocoa/menu.mm
- src/osx/cocoa/menuitem.mm
- src/osx/cocoa/msgdlg.mm
- src/osx/cocoa/nonownedwnd.mm
- src/osx/cocoa/notebook.mm
- src/osx/cocoa/radiobut.mm
- src/osx/cocoa/preferences.mm
- src/osx/cocoa/printdlg.mm
- src/osx/cocoa/scrolbar.mm
- src/osx/cocoa/slider.mm
- src/osx/cocoa/spinbutt.mm
- src/osx/cocoa/srchctrl.mm
- src/osx/cocoa/statbox.mm
- src/osx/cocoa/statline.mm
- src/osx/cocoa/stattext.mm
- src/osx/cocoa/textctrl.mm
- src/osx/cocoa/tglbtn.mm
- src/osx/cocoa/toolbar.mm
- src/osx/cocoa/tooltip.mm
- src/osx/cocoa/window.mm
- </set>
- <set var="OSX_COCOA_HDR" hints="files">
- wx/osx/cocoa/chkconf.h
- wx/osx/cocoa/evtloop.h
- wx/osx/cocoa/private.h
- $(OSX_CARBON_HDR) <!-- FIXME: these headers need moved somewhere shared... -->
- wx/generic/region.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxOSX/iPhone -->
- <!-- ====================================================================== -->
- <set var="OSX_IPHONE_SRC" hints="files">
- $(OSX_CARBON_COCOA_SRC)
- src/generic/regiong.cpp
- src/generic/icon.cpp
- <!-- iphone files -->
- src/osx/iphone/anybutton.mm
- src/osx/iphone/button.mm
- src/osx/iphone/checkbox.mm
- src/osx/iphone/dialog.mm
- src/osx/iphone/evtloop.mm
- src/osx/iphone/gauge.mm
- src/osx/iphone/msgdlg.mm
- src/osx/iphone/nonownedwnd.mm
- src/osx/iphone/scrolbar.mm
- src/osx/iphone/slider.mm
- src/osx/iphone/stattext.mm
- src/osx/iphone/textctrl.mm
- src/osx/iphone/toolbar.mm
- src/osx/iphone/utils.mm
- src/osx/iphone/window.mm
- </set>
- <set var="OSX_IPHONE_HDR" hints="files">
- wx/osx/iphone/chkconf.h
- wx/osx/iphone/evtloop.h
- wx/osx/iphone/private.h
- $(OSX_CARBON_HDR) <!-- FIXME: these headers need moved somewhere shared... -->
- wx/generic/region.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxCocoa -->
- <!-- ====================================================================== -->
- <set var="COCOA_LOWLEVEL_SRC" hints="files">
- <!-- Shared wxMac and wxCocoa files -->
- src/osx/core/hid.cpp
- src/osx/core/utilsexc_cf.cpp
- </set>
- <set var="COCOA_LOWLEVEL_HDR" hints="files">
- </set>
- <set var="COCOA_SRC" hints="files">
- src/cocoa/NSBox.mm
- src/cocoa/NSButton.mm
- src/cocoa/NSControl.mm
- src/cocoa/NSMenu.mm
- src/cocoa/NSPanel.mm
- src/cocoa/NSScroller.mm
- src/cocoa/NSSlider.mm
- src/cocoa/NSTabView.mm
- src/cocoa/NSTableView.mm
- src/cocoa/NSTextField.mm
- src/cocoa/NSView.mm
- src/cocoa/NSWindow.mm
- src/cocoa/ObjcRef.mm
- src/cocoa/app.mm
- src/cocoa/bitmap.mm
- src/cocoa/bmpbuttn.mm
- src/cocoa/brush.mm
- src/cocoa/button.mm
- src/cocoa/checkbox.mm
- src/cocoa/checklst.mm
- src/cocoa/choice.mm
- src/cocoa/clipbrd.mm
- src/cocoa/colordlg.mm
- src/cocoa/colour.mm
- src/cocoa/combobox.mm
- src/cocoa/control.mm
- src/cocoa/cursor.mm
- src/cocoa/data.cpp
- src/cocoa/dataobj.mm
- src/cocoa/dc.mm
- src/cocoa/dcclient.mm
- src/cocoa/dcmemory.mm
- src/cocoa/dcscreen.cpp
- src/cocoa/dialog.mm
- src/cocoa/dirdlg.mm
- src/cocoa/display.mm
- src/cocoa/drawer.mm
- src/cocoa/evtloop.mm
- src/cocoa/filedlg.mm
- src/cocoa/font.mm
- src/cocoa/fontdlg.mm
- src/cocoa/fontenum.mm
- src/cocoa/fontutil.cpp
- src/cocoa/frame.mm
- src/cocoa/gauge.mm
- src/cocoa/icon.mm
- src/cocoa/listbox.mm
- src/cocoa/main.cpp
- src/cocoa/mbarman.mm
- src/cocoa/mdi.mm
- src/cocoa/menu.mm
- src/cocoa/menuitem.mm
- src/cocoa/msgdlg.mm
- src/cocoa/notebook.mm
- src/cocoa/pen.mm
- src/cocoa/radiobox.mm
- src/cocoa/radiobut.mm
- src/cocoa/region.mm
- src/cocoa/scrolbar.mm
- src/cocoa/settings.mm
- src/cocoa/slider.mm
- src/cocoa/sound.mm
- src/cocoa/spinbutt.mm
- src/cocoa/statbmp.mm
- src/cocoa/statbox.mm
- src/cocoa/statline2.mm
- src/cocoa/stattext.mm
- src/cocoa/textctrl.mm
- src/cocoa/timer.mm
- src/cocoa/toolbar.mm
- src/cocoa/tooltip.mm
- src/cocoa/toplevel.mm
- src/cocoa/utils.mm
- src/cocoa/utilsexc.mm
- src/cocoa/window.mm
- <!-- Generic implementations used by wxCocoa: -->
- src/generic/accel.cpp
- src/generic/caret.cpp
- src/generic/clrpickerg.cpp
- src/generic/collpaneg.cpp
- src/generic/colrdlgg.cpp
- src/generic/fdrepdlg.cpp
- src/generic/filepickerg.cpp
- src/generic/fontdlgg.cpp
- src/generic/fontpickerg.cpp
- src/generic/imaglist.cpp
- src/generic/listctrl.cpp
- src/generic/paletteg.cpp
- src/generic/regiong.cpp
- src/generic/statusbr.cpp
- src/generic/textmeasure.cpp
- </set>
- <set var="COCOA_HDR" hints="files">
- wx/cocoa/NSApplication.h
- wx/cocoa/NSBox.h
- wx/cocoa/NSButton.h
- wx/cocoa/NSControl.h
- wx/cocoa/NSMenu.h
- wx/cocoa/NSPanel.h
- wx/cocoa/NSScroller.h
- wx/cocoa/NSSlider.h
- wx/cocoa/NSTabView.h
- wx/cocoa/NSTableView.h
- wx/cocoa/NSTextField.h
- wx/cocoa/NSView.h
- wx/cocoa/NSWindow.h
- wx/cocoa/ObjcAssociate.h
- wx/cocoa/ObjcPose.h
- wx/cocoa/ObjcRef.h
- wx/cocoa/app.h
- wx/cocoa/bitmap.h
- wx/cocoa/bmpbuttn.h
- wx/cocoa/brush.h
- wx/cocoa/button.h
- wx/cocoa/checkbox.h
- wx/cocoa/checklst.h
- wx/cocoa/choice.h
- wx/cocoa/clipbrd.h
- wx/cocoa/colordlg.h
- wx/cocoa/colour.h
- wx/cocoa/combobox.h
- wx/cocoa/control.h
- wx/cocoa/cursor.h
- wx/cocoa/dataform.h
- wx/cocoa/dataobj.h
- wx/cocoa/dataobj2.h
- wx/cocoa/dc.h
- wx/cocoa/dcclient.h
- wx/cocoa/dcmemory.h
- wx/cocoa/dcscreen.h
- wx/cocoa/dialog.h
- wx/cocoa/dirdlg.h
- wx/cocoa/drawer.h
- wx/cocoa/evtloop.h
- wx/cocoa/filedlg.h
- wx/cocoa/font.h
- wx/cocoa/fontdlg.h
- wx/cocoa/frame.h
- wx/cocoa/gauge.h
- wx/cocoa/icon.h
- wx/cocoa/listbox.h
- wx/cocoa/log.h
- wx/cocoa/mbarman.h
- wx/cocoa/mdi.h
- wx/cocoa/menu.h
- wx/cocoa/menuitem.h
- wx/cocoa/msgdlg.h
- wx/cocoa/notebook.h
- wx/cocoa/pen.h
- wx/cocoa/radiobox.h
- wx/cocoa/radiobut.h
- wx/cocoa/region.h
- wx/cocoa/scrolbar.h
- wx/cocoa/slider.h
- wx/cocoa/sound.h
- wx/cocoa/spinbutt.h
- wx/cocoa/statbmp.h
- wx/cocoa/statbox.h
- wx/cocoa/statline.h
- wx/cocoa/stattext.h
- wx/cocoa/textctrl.h
- wx/cocoa/toolbar.h
- wx/cocoa/tooltip.h
- wx/cocoa/toplevel.h
- wx/cocoa/window.h
- <!-- Semi-private headers -->
- wx/cocoa/objc/objc_uniquifying.h
- <!-- Generic implementations used by wxCocoa: -->
- wx/generic/caret.h
- wx/generic/clrpickerg.h
- wx/generic/collpaneg.h
- wx/generic/fdrepdlg.h
- wx/generic/fontdlgg.h
- wx/generic/fontpickerg.h
- wx/generic/imaglist.h
- wx/generic/listctrl.h
- wx/generic/paletteg.h
- wx/generic/region.h
- wx/generic/statusbr.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxUniversal -->
- <!-- ====================================================================== -->
- <set var="UNIV_THEMES_SRC" hints="files">
- src/univ/themes/gtk.cpp
- src/univ/themes/metal.cpp
- src/univ/themes/mono.cpp
- src/univ/themes/win32.cpp
- </set>
- <set var="UNIV_PLATFORM_SRC" hints="files">
- <if cond="TOOLKIT=='MSW'">
- src/msw/evtloop.cpp
- </if>
- </set>
- <set var="UNIV_PLATFORM_HDR" hints="files">
- <if cond="TOOLKIT=='MSW'">
- wx/msw/evtloop.h
- </if>
- </set>
- <set var="UNIV_SRC" hints="files">
- $(UNIV_PLATFORM_SRC)
- src/generic/accel.cpp
- src/generic/clrpickerg.cpp
- src/generic/collpaneg.cpp
- src/generic/colrdlgg.cpp
- src/generic/dirdlgg.cpp
- src/generic/fdrepdlg.cpp
- src/generic/filedlgg.cpp
- src/generic/filepickerg.cpp
- src/generic/fontdlgg.cpp
- src/generic/fontpickerg.cpp
- src/generic/listctrl.cpp
- src/generic/mdig.cpp
- src/generic/prntdlgg.cpp
- src/univ/bmpbuttn.cpp
- src/univ/button.cpp
- src/univ/checkbox.cpp
- src/univ/checklst.cpp
- src/univ/choice.cpp
- src/univ/combobox.cpp
- src/univ/control.cpp
- src/univ/ctrlrend.cpp
- src/univ/dialog.cpp
- src/univ/framuniv.cpp
- src/univ/gauge.cpp
- src/univ/inpcons.cpp
- src/univ/inphand.cpp
- src/univ/listbox.cpp
- src/univ/menu.cpp
- src/univ/notebook.cpp
- src/univ/radiobox.cpp
- src/univ/radiobut.cpp
- src/univ/scrarrow.cpp
- src/univ/scrolbar.cpp
- src/univ/scrthumb.cpp
- src/univ/settingsuniv.cpp
- src/univ/slider.cpp
- src/univ/spinbutt.cpp
- src/univ/statbmp.cpp
- src/univ/statbox.cpp
- src/univ/statline.cpp
- src/univ/stattext.cpp
- src/univ/statusbr.cpp
- src/univ/stdrend.cpp
- src/univ/textctrl.cpp
- src/univ/tglbtn.cpp
- src/univ/theme.cpp
- src/univ/toolbar.cpp
- src/univ/topluniv.cpp
- src/univ/winuniv.cpp
- </set>
- <set var="UNIV_HDR" hints="files">
- $(UNIV_PLATFORM_HDR)
- wx/generic/accel.h
- wx/generic/animate.h
- wx/generic/clrpickerg.h
- wx/generic/collpaneg.h
- wx/generic/ctrlsub.h
- wx/generic/dirdlgg.h
- wx/generic/fdrepdlg.h
- wx/generic/filedlgg.h
- wx/generic/filepickerg.h
- wx/generic/fontdlgg.h
- wx/generic/fontpickerg.h
- wx/generic/listctrl.h
- wx/generic/mdig.h
- wx/generic/statusbr.h
- wx/univ/anybutton.h
- wx/univ/app.h
- wx/univ/bmpbuttn.h
- wx/univ/button.h
- wx/univ/checkbox.h
- wx/univ/checklst.h
- wx/univ/chkconf.h
- wx/univ/choice.h
- wx/univ/colschem.h
- wx/univ/combobox.h
- wx/univ/control.h
- wx/univ/custombgwin.h
- wx/univ/dialog.h
- wx/univ/frame.h
- wx/univ/gauge.h
- wx/univ/inpcons.h
- wx/univ/inphand.h
- wx/univ/listbox.h
- wx/univ/menu.h
- wx/univ/menuitem.h
- wx/univ/notebook.h
- wx/univ/panel.h
- wx/univ/radiobox.h
- wx/univ/radiobut.h
- wx/univ/renderer.h
- wx/univ/scrarrow.h
- wx/univ/scrolbar.h
- wx/univ/scrthumb.h
- wx/univ/scrtimer.h
- wx/univ/slider.h
- wx/univ/spinbutt.h
- wx/univ/statbmp.h
- wx/univ/statbox.h
- wx/univ/statline.h
- wx/univ/stattext.h
- wx/univ/statusbr.h
- wx/univ/stdrend.h
- wx/univ/textctrl.h
- wx/univ/theme.h
- wx/univ/tglbtn.h
- wx/univ/toolbar.h
- wx/univ/toplevel.h
- wx/univ/window.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxAdvanced -->
- <!-- ====================================================================== -->
- <set var="ADVANCED_CMN_SRC" hints="files">
- src/common/animatecmn.cpp
- src/common/bmpcboxcmn.cpp
- src/common/calctrlcmn.cpp
- src/common/datavcmn.cpp
- src/common/gridcmn.cpp
- src/common/hyperlnkcmn.cpp
- src/common/odcombocmn.cpp
- src/common/richtooltipcmn.cpp
- src/generic/aboutdlgg.cpp
- src/generic/bannerwindow.cpp
- src/generic/bmpcboxg.cpp
- src/generic/calctrlg.cpp
- src/generic/commandlinkbuttong.cpp
- src/generic/datavgen.cpp
- src/generic/datectlg.cpp
- src/generic/editlbox.cpp
- src/generic/grid.cpp
- src/generic/gridctrl.cpp
- src/generic/grideditors.cpp
- src/generic/gridsel.cpp
- src/generic/helpext.cpp
- src/generic/hyperlinkg.cpp
- src/generic/laywin.cpp
- src/generic/notifmsgg.cpp
- src/generic/odcombo.cpp
- src/generic/propdlg.cpp
- src/generic/richtooltipg.cpp
- src/generic/sashwin.cpp
- src/generic/splash.cpp
- src/generic/timectrlg.cpp
- src/generic/tipdlg.cpp
- src/generic/treelist.cpp
- src/generic/wizard.cpp
- </set>
- <set var="ADVANCED_CMN_HDR" hints="files">
- wx/aboutdlg.h
- wx/animate.h
- wx/bannerwindow.h
- wx/bmpcbox.h
- wx/calctrl.h
- wx/commandlinkbutton.h
- wx/dataview.h
- wx/datectrl.h
- wx/dateevt.h
- wx/datetimectrl.h
- wx/dcbuffer.h
- wx/dvrenderers.h
- wx/editlbox.h
- wx/generic/aboutdlgg.h
- wx/generic/bmpcbox.h
- wx/generic/calctrlg.h
- wx/generic/datectrl.h
- wx/generic/dataview.h
- wx/generic/dvrenderer.h
- wx/generic/dvrenderers.h
- wx/generic/grid.h
- wx/generic/gridctrl.h
- wx/generic/grideditors.h
- wx/generic/gridsel.h
- wx/generic/helpext.h
- wx/generic/hyperlink.h
- wx/generic/laywin.h
- wx/generic/notifmsg.h
- wx/generic/propdlg.h
- wx/generic/sashwin.h
- wx/generic/splash.h
- wx/generic/timectrl.h
- wx/generic/wizard.h
- wx/grid.h
- wx/hyperlink.h
- wx/joystick.h
- wx/laywin.h
- wx/notifmsg.h
- wx/odcombo.h
- wx/propdlg.h
- wx/richtooltip.h
- wx/sashwin.h
- wx/sound.h
- wx/splash.h
- wx/taskbar.h
- wx/timectrl.h
- wx/tipdlg.h
- wx/treelist.h
- wx/wizard.h
- </set>
- <set var="ADVANCED_MSW_SRC" hints="files">
- src/common/taskbarcmn.cpp
- src/msw/aboutdlg.cpp
- src/msw/notifmsg.cpp
- src/msw/richtooltip.cpp
- src/msw/sound.cpp
- src/msw/taskbar.cpp
- </set>
- <set var="ADVANCED_MSW_HDR" hints="files">
- wx/msw/notifmsg.h
- wx/msw/sound.h
- wx/msw/taskbar.h
- </set>
- <!-- not used with wxUniv -->
- <set var="ADVANCED_MSW_NATIVE_SRC" hints="files">
- src/generic/animateg.cpp
- src/msw/bmpcbox.cpp
- src/msw/calctrl.cpp
- src/msw/commandlinkbutton.cpp
- src/msw/datecontrols.cpp
- src/msw/datectrl.cpp
- src/msw/datetimectrl.cpp
- src/msw/hyperlink.cpp
- src/msw/timectrl.cpp
- </set>
- <set var="ADVANCED_MSW_NATIVE_HDR" hints="files">
- wx/generic/animate.h
- wx/msw/bmpcbox.h
- wx/msw/commandlinkbutton.h
- wx/msw/calctrl.h
- wx/msw/datectrl.h
- wx/msw/datetimectrl.h
- wx/msw/hyperlink.h
- wx/msw/timectrl.h
- </set>
- <!-- not built on WindowsCE: -->
- <set var="ADVANCED_MSW_DESKTOP_SRC" hints="files">
- src/msw/joystick.cpp
- </set>
- <set var="ADVANCED_MSW_DESKTOP_HDR" hints="files">
- wx/msw/joystick.h
- </set>
- <set var="ADVANCED_OSX_CARBON_SRC" hints="files">
- src/common/taskbarcmn.cpp
- src/generic/animateg.cpp
- src/osx/carbon/aboutdlg.cpp
- src/osx/carbon/drawer.cpp
- src/osx/dataview_osx.cpp
- src/osx/carbon/dataview.cpp
- src/osx/sound_osx.cpp
- src/osx/carbon/sound.cpp
- src/osx/carbon/taskbar.cpp
- src/osx/core/hidjoystick.cpp
- </set>
- <set var="ADVANCED_OSX_CARBON_HDR" hints="files">
- wx/generic/animate.h
- wx/osx/dataview.h
- wx/osx/dvrenderer.h
- wx/osx/dvrenderers.h
- wx/osx/joystick.h
- wx/osx/sound.h
- wx/osx/taskbarosx.h
- wx/osx/carbon/drawer.h
- wx/osx/carbon/dataview.h
- wx/osx/core/joystick.h
- </set>
- <set var="ADVANCED_OSX_COCOA_SRC" hints="files">
- src/common/taskbarcmn.cpp
- src/generic/animateg.cpp
- src/osx/datetimectrl_osx.cpp
- src/osx/datectrl_osx.cpp
- src/osx/sound_osx.cpp
- src/osx/timectrl_osx.cpp
- src/osx/carbon/sound.cpp
- src/osx/core/sound.cpp
- src/osx/cocoa/aboutdlg.mm
- src/osx/dataview_osx.cpp
- src/osx/cocoa/dataview.mm
- src/osx/cocoa/datetimectrl.mm
- src/osx/cocoa/taskbar.mm
- src/osx/core/hidjoystick.cpp
- </set>
- <set var="ADVANCED_OSX_COCOA_HDR" hints="files">
- wx/generic/animate.h
- wx/osx/dataview.h
- wx/osx/datectrl.h
- wx/osx/datetimectrl.h
- wx/osx/dvrenderer.h
- wx/osx/dvrenderers.h
- wx/osx/joystick.h
- wx/osx/sound.h
- wx/osx/taskbarosx.h
- wx/osx/timectrl.h
- wx/osx/core/joystick.h
- wx/osx/cocoa/dataview.h
- </set>
- <set var="ADVANCED_OSX_IPHONE_SRC" hints="files">
- src/generic/animateg.cpp
- src/osx/sound_osx.cpp
- src/osx/core/sound.cpp
- </set>
- <set var="ADVANCED_OSX_IPHONE_HDR" hints="files">
- wx/generic/animate.h
- wx/osx/sound.h
- </set>
- <set var="ADVANCED_COCOA_SRC" hints="files">
- src/cocoa/taskbar.mm
- src/common/taskbarcmn.cpp
- src/generic/animateg.cpp
- src/osx/core/hidjoystick.cpp
- </set>
- <set var="ADVANCED_COCOA_HDR" hints="files">
- wx/cocoa/taskbar.h
- wx/generic/animate.h
- wx/osx/core/joystick.h
- </set>
- <set var="ADVANCED_OS2_SRC" hints="files">
- src/generic/animateg.cpp
- src/os2/joystick.cpp
- src/os2/sound.cpp
- </set>
- <set var="ADVANCED_OS2_HDR" hints="files">
- wx/generic/animate.h
- wx/os2/joystick.h
- wx/os2/sound.h
- </set>
- <set var="ADVANCED_UNIX_SRC" hints="files">
- src/common/taskbarcmn.cpp
- src/unix/joystick.cpp
- src/unix/sound.cpp
- src/unix/taskbarx11.cpp
- </set>
- <set var="ADVANCED_UNIX_HDR" hints="files">
- wx/unix/joystick.h
- wx/unix/sound.h
- wx/unix/taskbarx11.h
- </set>
- <set var="ADVANCED_MOTIF_SRC" hints="files">
- src/generic/animateg.cpp
- </set>
- <set var="ADVANCED_MOTIF_HDR" hints="files">
- wx/generic/animate.h
- </set>
- <set var="ADVANCED_GTK_WIN32_SRC" hints="files">
- src/common/taskbarcmn.cpp
- src/msw/joystick.cpp
- src/msw/sound.cpp
- </set>
- <set var="ADVANCED_GTK_WIN32_HDR" hints="files">
- wx/msw/joystick.h
- wx/msw/sound.h
- wx/msw/taskbar.h
- </set>
- <set var="ADVANCED_GTK_PLATFORM_SRC" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(ADVANCED_UNIX_SRC)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(ADVANCED_UNIX_SRC)</if>
- <if cond="PLATFORM_WIN32=='1'">$(ADVANCED_GTK_WIN32_SRC)</if>
- </set>
- <set var="ADVANCED_GTK_PLATFORM_HDR" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(ADVANCED_UNIX_HDR)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(ADVANCED_UNIX_HDR)</if>
- <if cond="PLATFORM_WIN32=='1'">$(ADVANCED_GTK_WIN32_HDR)</if>
- </set>
- <set var="ADVANCED_GTK_SRC" hints="files">
- $(ADVANCED_GTK_PLATFORM_SRC)
- src/gtk/notifmsg.cpp
- src/gtk/taskbar.cpp
- </set>
- <set var="ADVANCED_GTK2_SRC" hints="files">
- $(ADVANCED_GTK_SRC)
- src/gtk/eggtrayicon.c
- src/gtk/hildon/notifmsg.cpp
- </set>
- <set var="ADVANCED_GTK_HDR" hints="files">
- $(ADVANCED_GTK_PLATFORM_HDR)
- wx/gtk/notifmsg.h
- wx/gtk/taskbar.h
- </set>
- <set var="ADVANCED_GTK2_HDR" hints="files">
- $(ADVANCED_GTK_HDR)
- wx/gtk/hildon/notifmsg.h
- </set>
- <set var="ADVANCED_GTK_NATIVE_SRC" hints="files">
- src/gtk/aboutdlg.cpp
- src/gtk/animate.cpp
- src/gtk/bmpcbox.cpp
- src/gtk/calctrl.cpp
- src/gtk/dataview.cpp
- src/gtk/hyperlink.cpp
- </set>
- <set var="ADVANCED_GTK_NATIVE_HDR" hints="files">
- wx/gtk/animate.h
- wx/gtk/bmpcbox.h
- wx/gtk/calctrl.h
- wx/gtk/dataview.h
- wx/gtk/dvrenderer.h
- wx/gtk/dvrenderers.h
- wx/gtk/hyperlink.h
- </set>
- <set var="ADVANCED_GTK1_SRC" hints="files">
- src/generic/animateg.cpp
- src/gtk1/eggtrayicon.c
- src/gtk1/taskbar.cpp
- </set>
- <set var="ADVANCED_GTK1_HDR" hints="files">
- wx/generic/animate.h
- </set>
- <set var="ADVANCED_UNIV_SRC" hints="files">
- <!--
- Including src/generic/animateg.cpp hre unconditionally results in bakefile
- errors when not fixing the value of TOOLKIT to MSW in msvc format, see #15327.
- -->
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">
- src/generic/animateg.cpp
- </if>
- <if cond="TOOLKIT=='MSW'">
- src/generic/animateg.cpp
- </if>
- <if cond="TOOLKIT=='WINCE'">
- src/generic/animateg.cpp
- </if>
- <if cond="TOOLKIT=='X11'">
- src/generic/animateg.cpp
- </if>
- </set>
- <set var="ADVANCED_UNIV_HDR" hints="files">
- wx/generic/animate.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxMedia -->
- <!-- ====================================================================== -->
- <set var="MEDIA_CMN_SRC" hints="files">
- src/common/mediactrlcmn.cpp
- </set>
- <set var="MEDIA_CMN_HDR" hints="files">
- wx/mediactrl.h
- </set>
- <set var="MEDIA_MSW_SRC" hints="files">
- src/msw/mediactrl_am.cpp
- src/msw/mediactrl_wmp10.cpp
- src/msw/mediactrl_qt.cpp
- </set>
- <set var="MEDIA_MSW_HDR" hints="files">
- </set>
- <!-- not built on WindowsCE: -->
- <set var="MEDIA_MSW_DESKTOP_SRC" hints="files">
- </set>
- <set var="MEDIA_MSW_DESKTOP_HDR" hints="files">
- </set>
- <set var="MEDIA_OSX_CARBON_SRC" hints="files">
- src/osx/carbon/mediactrl.cpp
- </set>
- <set var="MEDIA_OSX_CARBON_HDR" hints="files">
- </set>
- <set var="MEDIA_OSX_COCOA_SRC" hints="files">
- src/osx/cocoa/mediactrl.mm
- </set>
- <set var="MEDIA_OSX_COCOA_HDR" hints="files">
- </set>
- <set var="MEDIA_OSX_IPHONE_SRC" hints="files">
- <!-- src/osx/iphone/mediactrl.mm -->
- </set>
- <set var="MEDIA_OSX_IPHONE_HDR" hints="files">
- </set>
- <set var="MEDIA_COCOA_SRC" hints="files">
- src/cocoa/mediactrl.mm
- </set>
- <set var="MEDIA_COCOA_HDR" hints="files">
- </set>
- <set var="MEDIA_OS2_SRC" hints="files">
- </set>
- <set var="MEDIA_OS2_HDR" hints="files">
- </set>
- <set var="MEDIA_UNIX_SRC" hints="files">
- src/unix/mediactrl.cpp
- </set>
- <set var="MEDIA_UNIX_HDR" hints="files">
- </set>
- <set var="MEDIA_GTK_SRC" hints="files">
- </set>
- <set var="MEDIA_GTK1_SRC" hints="files">
- </set>
- <!-- ====================================================================== -->
- <!-- wxHTML -->
- <!-- ====================================================================== -->
- <set var="HTML_SRC_PLATFORM">
- <if cond="TOOLKIT=='MSW'">
- src/msw/helpbest.cpp
- </if>
- <if cond="PLATFORM_UNIX=='1'">
- src/html/chm.cpp
- </if>
- <if cond="PLATFORM_MACOSX=='1'">
- src/html/chm.cpp
- </if>
- </set>
- <set var="HTML_SRC" hints="files">
- $(HTML_SRC_PLATFORM)
- src/html/helpctrl.cpp
- src/html/helpdata.cpp
- src/html/helpdlg.cpp
- src/html/helpfrm.cpp
- src/html/helpwnd.cpp
- src/html/htmlcell.cpp
- src/html/htmlfilt.cpp
- src/html/htmlpars.cpp
- src/html/htmltag.cpp
- src/html/htmlwin.cpp
- src/html/htmprint.cpp
- src/html/m_dflist.cpp
- src/html/m_fonts.cpp
- src/html/m_hline.cpp
- src/html/m_image.cpp
- src/html/m_layout.cpp
- src/html/m_links.cpp
- src/html/m_list.cpp
- src/html/m_pre.cpp
- src/html/m_span.cpp
- src/html/m_style.cpp
- src/html/m_tables.cpp
- src/html/styleparams.cpp
- src/html/winpars.cpp
- <!-- wxHTML users: -->
- src/generic/htmllbox.cpp
- </set>
- <set var="MSW_HTML_HDR" hints="files">
- <if cond="TOOLKIT=='MSW'">wx/msw/helpbest.h</if>
- </set>
- <set var="HTML_HDR" hints="files">
- wx/html/helpctrl.h
- wx/html/helpdata.h
- wx/html/helpdlg.h
- wx/html/helpfrm.h
- wx/html/helpwnd.h
- wx/html/htmlcell.h
- wx/html/htmldefs.h
- wx/html/htmlfilt.h
- wx/html/htmlpars.h
- wx/html/htmlproc.h
- wx/html/htmltag.h
- wx/html/htmlwin.h
- wx/html/htmprint.h
- wx/html/m_templ.h
- wx/html/styleparams.h
- wx/html/winpars.h
- wx/wxhtml.h
- <!-- wxHTML users: -->
- wx/htmllbox.h
- $(MSW_HTML_HDR)
- </set>
- <!-- ====================================================================== -->
- <!-- wxWEBVIEW -->
- <!-- ====================================================================== -->
- <set var="WEBVIEW_SRC_PLATFORM">
- <if cond="TOOLKIT=='MSW'">src/msw/webview_ie.cpp</if>
- <if cond="TOOLKIT=='GTK'">src/gtk/webview_webkit.cpp</if>
- <if cond="PLATFORM_MACOSX=='1'">src/osx/webview_webkit.mm</if>
- </set>
- <set var="WEBVIEW_SRC" hints="files">
- $(WEBVIEW_SRC_PLATFORM)
- src/common/webview.cpp
- src/common/webviewarchivehandler.cpp
- src/common/webviewfshandler.cpp
- </set>
- <set var="WEBVIEW_HDR_PLATFORM" hints="files">
- <if cond="TOOLKIT=='MSW'">
- wx/msw/webviewhistoryitem_ie.h
- wx/msw/webview_ie.h
- wx/msw/webview_missing.h
- </if>
- <if cond="TOOLKIT=='GTK'">
- wx/gtk/webviewhistoryitem_webkit.h
- wx/gtk/webview_webkit.h
- </if>
- <if cond="PLATFORM_MACOSX=='1'">
- wx/osx/webviewhistoryitem_webkit.h
- wx/osx/webview_webkit.h
- </if>
- </set>
- <set var="WEBVIEW_HDR" hints="files">
- $(WEBVIEW_HDR_PLATFORM)
- wx/webview.h
- wx/webviewarchivehandler.h
- wx/webviewfshandler.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxXRC -->
- <!-- ====================================================================== -->
- <set var="XRC_SRC" hints="files">
- src/xrc/xh_animatctrl.cpp
- src/xrc/xh_bannerwindow.cpp
- src/xrc/xh_bmp.cpp
- src/xrc/xh_bmpcbox.cpp
- src/xrc/xh_bmpbt.cpp
- src/xrc/xh_bttn.cpp
- src/xrc/xh_cald.cpp
- src/xrc/xh_chckb.cpp
- src/xrc/xh_chckl.cpp
- src/xrc/xh_choic.cpp
- src/xrc/xh_choicbk.cpp
- src/xrc/xh_clrpicker.cpp
- src/xrc/xh_cmdlinkbn.cpp
- src/xrc/xh_collpane.cpp
- src/xrc/xh_combo.cpp
- src/xrc/xh_comboctrl.cpp
- src/xrc/xh_datectrl.cpp
- src/xrc/xh_dirpicker.cpp
- src/xrc/xh_dlg.cpp
- src/xrc/xh_editlbox.cpp
- src/xrc/xh_filectrl.cpp
- src/xrc/xh_filepicker.cpp
- src/xrc/xh_fontpicker.cpp
- src/xrc/xh_frame.cpp
- src/xrc/xh_gauge.cpp
- src/xrc/xh_gdctl.cpp
- src/xrc/xh_grid.cpp
- src/xrc/xh_html.cpp
- src/xrc/xh_hyperlink.cpp
- src/xrc/xh_listb.cpp
- src/xrc/xh_listbk.cpp
- src/xrc/xh_listc.cpp
- src/xrc/xh_mdi.cpp
- src/xrc/xh_menu.cpp
- src/xrc/xh_notbk.cpp
- src/xrc/xh_odcombo.cpp
- src/xrc/xh_panel.cpp
- src/xrc/xh_propdlg.cpp
- src/xrc/xh_radbt.cpp
- src/xrc/xh_radbx.cpp
- src/xrc/xh_scrol.cpp
- src/xrc/xh_scwin.cpp
- src/xrc/xh_htmllbox.cpp
- src/xrc/xh_simplebook.cpp
- src/xrc/xh_sizer.cpp
- src/xrc/xh_slidr.cpp
- src/xrc/xh_spin.cpp
- src/xrc/xh_split.cpp
- src/xrc/xh_srchctrl.cpp
- src/xrc/xh_statbar.cpp
- src/xrc/xh_stbmp.cpp
- src/xrc/xh_stbox.cpp
- src/xrc/xh_stlin.cpp
- src/xrc/xh_sttxt.cpp
- src/xrc/xh_text.cpp
- src/xrc/xh_tglbtn.cpp
- src/xrc/xh_timectrl.cpp
- src/xrc/xh_toolb.cpp
- src/xrc/xh_toolbk.cpp
- src/xrc/xh_tree.cpp
- src/xrc/xh_treebk.cpp
- src/xrc/xh_unkwn.cpp
- src/xrc/xh_wizrd.cpp
- src/xrc/xmlres.cpp
- src/xrc/xmladv.cpp
- src/xrc/xmlrsall.cpp
- </set>
- <set var="XRC_HDR" hints="files">
- wx/xrc/xh_all.h
- wx/xrc/xh_animatctrl.h
- wx/xrc/xh_bannerwindow.h
- wx/xrc/xh_bmpbt.h
- wx/xrc/xh_bmp.h
- wx/xrc/xh_bmpcbox.h
- wx/xrc/xh_bttn.h
- wx/xrc/xh_cald.h
- wx/xrc/xh_chckb.h
- wx/xrc/xh_chckl.h
- wx/xrc/xh_choic.h
- wx/xrc/xh_choicbk.h
- wx/xrc/xh_clrpicker.h
- wx/xrc/xh_cmdlinkbn.h
- wx/xrc/xh_collpane.h
- wx/xrc/xh_combo.h
- wx/xrc/xh_comboctrl.h
- wx/xrc/xh_datectrl.h
- wx/xrc/xh_dirpicker.h
- wx/xrc/xh_dlg.h
- wx/xrc/xh_editlbox.h
- wx/xrc/xh_filectrl.h
- wx/xrc/xh_filepicker.h
- wx/xrc/xh_fontpicker.h
- wx/xrc/xh_frame.h
- wx/xrc/xh_mdi.h
- wx/xrc/xh_gauge.h
- wx/xrc/xh_gdctl.h
- wx/xrc/xh_grid.h
- wx/xrc/xh_html.h
- wx/xrc/xh_hyperlink.h
- wx/xrc/xh_listb.h
- wx/xrc/xh_listbk.h
- wx/xrc/xh_listc.h
- wx/xrc/xh_menu.h
- wx/xrc/xh_notbk.h
- wx/xrc/xh_odcombo.h
- wx/xrc/xh_panel.h
- wx/xrc/xh_propdlg.h
- wx/xrc/xh_radbt.h
- wx/xrc/xh_radbx.h
- wx/xrc/xh_scrol.h
- wx/xrc/xh_scwin.h
- wx/xrc/xh_htmllbox.h
- wx/xrc/xh_simplebook.h
- wx/xrc/xh_sizer.h
- wx/xrc/xh_slidr.h
- wx/xrc/xh_spin.h
- wx/xrc/xh_split.h
- wx/xrc/xh_srchctrl.h
- wx/xrc/xh_statbar.h
- wx/xrc/xh_stbmp.h
- wx/xrc/xh_stbox.h
- wx/xrc/xh_stlin.h
- wx/xrc/xh_sttxt.h
- wx/xrc/xh_text.h
- wx/xrc/xh_tglbtn.h
- wx/xrc/xh_timectrl.h
- wx/xrc/xh_toolb.h
- wx/xrc/xh_toolbk.h
- wx/xrc/xh_tree.h
- wx/xrc/xh_treebk.h
- wx/xrc/xh_unkwn.h
- wx/xrc/xh_wizrd.h
- wx/xrc/xmlres.h
- </set>
- <!-- ====================================================================== -->
- <!-- XML classes -->
- <!-- ====================================================================== -->
- <set var="XML_SRC" hints="files">
- src/xml/xml.cpp
- src/common/xtixml.cpp <!-- FIXME - temporary solution -->
- </set>
- <set var="XML_HDR" hints="files">
- wx/xml/xml.h
- wx/xtixml.h <!-- FIXME - temporary solution -->
- </set>
- <!-- ====================================================================== -->
- <!-- OpenGL canvas -->
- <!-- ====================================================================== -->
- <set var="OPENGL_SRC_PLATFORM" hints="files">
- <if cond="TOOLKIT=='OSX_CARBON'">src/osx/carbon/glcanvas.cpp src/osx/glcanvas_osx.cpp</if>
- <if cond="TOOLKIT=='OSX_COCOA'">src/osx/cocoa/glcanvas.mm src/osx/glcanvas_osx.cpp</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">src/osx/iphone/glcanvas.mm src/osx/glcanvas_osx.cpp</if>
- <if cond="TOOLKIT=='COCOA'">src/cocoa/glcanvas.mm</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3' and PLATFORM_WIN32=='0'">
- src/unix/glx11.cpp
- src/gtk/glcanvas.cpp
- </if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">
- src/gtk/glcanvas.cpp
- src/unix/glx11.cpp
- </if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">
- src/gtk1/glcanvas.cpp
- src/unix/glx11.cpp
- </if>
- <if cond="TOOLKIT=='MSW'">src/msw/glcanvas.cpp</if>
- <if cond="TOOLKIT=='WINCE'">src/msw/glcanvas.cpp</if>
- <if cond="TOOLKIT=='MOTIF'">src/x11/glcanvas.cpp src/unix/glx11.cpp</if>
- <if cond="TOOLKIT=='X11'">src/x11/glcanvas.cpp src/unix/glx11.cpp</if>
- <if cond="TOOLKIT=='PM'">src/os2/glcanvas.cpp</if>
- </set>
- <set var="OPENGL_SRC" hints="files">
- src/common/glcmn.cpp
- $(OPENGL_SRC_PLATFORM)
- </set>
- <set var="OPENGL_HDR_PLATFORM" hints="files">
- <if cond="TOOLKIT=='OSX_CARBON'">wx/osx/glcanvas.h</if>
- <if cond="TOOLKIT=='OSX_COCOA'">wx/osx/glcanvas.h</if>
- <if cond="TOOLKIT=='COCOA'">wx/cocoa/glcanvas.h</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">
- wx/gtk/glcanvas.h
- wx/unix/glx11.h
- </if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">
- wx/gtk/glcanvas.h
- wx/unix/glx11.h
- </if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">
- wx/gtk1/glcanvas.h
- wx/unix/glx11.h
- </if>
- <if cond="TOOLKIT=='MSW'">wx/msw/glcanvas.h</if>
- <if cond="TOOLKIT=='WINCE'">wx/msw/glcanvas.h</if>
- <if cond="TOOLKIT=='MOTIF'">wx/x11/glcanvas.h wx/unix/glx11.h</if>
- <if cond="TOOLKIT=='X11'">wx/x11/glcanvas.h wx/unix/glx11.h</if>
- </set>
- <set var="OPENGL_HDR" hints="files">
- wx/glcanvas.h
- $(OPENGL_HDR_PLATFORM)
- </set>
- <!-- ====================================================================== -->
- <!-- Misc plugin sources: -->
- <!-- ====================================================================== -->
- <set var="UNIX_SOUND_SRC_SDL" hints="files">
- src/unix/sound_sdl.cpp
- </set>
- <!-- ====================================================================== -->
- <!-- wxAUI -->
- <!-- ====================================================================== -->
- <set var="AUI_GTK_SRC" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">
- src/aui/tabartgtk.cpp
- </if>
- </set>
- <set var="AUI_GTK_HDR" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">
- wx/aui/tabartgtk.h
- </if>
- </set>
- <set var="AUI_SRC" hints="files">
- src/aui/framemanager.cpp
- src/aui/dockart.cpp
- src/aui/floatpane.cpp
- src/aui/auibook.cpp
- src/aui/auibar.cpp
- src/aui/tabmdi.cpp
- src/aui/tabart.cpp
- src/xrc/xh_auinotbk.cpp
- $(AUI_GTK_SRC)
- </set>
- <set var="AUI_HDR" hints="files">
- wx/aui/framemanager.h
- wx/aui/dockart.h
- wx/aui/floatpane.h
- wx/aui/auibook.h
- wx/aui/auibar.h
- wx/aui/tabmdi.h
- wx/aui/aui.h
- wx/aui/tabart.h
- wx/xrc/xh_auinotbk.h
- $(AUI_GTK_HDR)
- </set>
- <!-- ====================================================================== -->
- <!-- wxRibbon -->
- <!-- ====================================================================== -->
- <set var="RIBBON_SRC" hints="files">
- src/ribbon/art_internal.cpp
- src/ribbon/art_msw.cpp
- src/ribbon/art_aui.cpp
- src/ribbon/bar.cpp
- src/ribbon/buttonbar.cpp
- src/ribbon/control.cpp
- src/ribbon/gallery.cpp
- src/ribbon/page.cpp
- src/ribbon/panel.cpp
- src/ribbon/toolbar.cpp
- src/xrc/xh_ribbon.cpp
- </set>
- <set var="RIBBON_HDR" hints="files">
- wx/ribbon/art.h
- wx/ribbon/art_internal.h
- wx/ribbon/bar.h
- wx/ribbon/buttonbar.h
- wx/ribbon/control.h
- wx/ribbon/gallery.h
- wx/ribbon/page.h
- wx/ribbon/panel.h
- wx/ribbon/toolbar.h
- wx/xrc/xh_ribbon.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxPropertyGrid -->
- <!-- ====================================================================== -->
- <set var="PROPGRID_SRC" hints="files">
- src/propgrid/advprops.cpp
- src/propgrid/editors.cpp
- src/propgrid/manager.cpp
- src/propgrid/property.cpp
- src/propgrid/propgrid.cpp
- src/propgrid/propgridiface.cpp
- src/propgrid/propgridpagestate.cpp
- src/propgrid/props.cpp
- </set>
- <set var="PROPGRID_HDR" hints="files">
- wx/propgrid/advprops.h
- wx/propgrid/editors.h
- wx/propgrid/manager.h
- wx/propgrid/property.h
- wx/propgrid/propgrid.h
- wx/propgrid/propgriddefs.h
- wx/propgrid/propgridiface.h
- wx/propgrid/propgridpagestate.h
- wx/propgrid/props.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxRichTextCtrl -->
- <!-- ====================================================================== -->
- <set var="RICHTEXT_SRC" hints="files">
- src/richtext/richtextbuffer.cpp
- src/richtext/richtextctrl.cpp
- src/richtext/richtextformatdlg.cpp
- src/richtext/richtexthtml.cpp
- src/richtext/richtextimagedlg.cpp
- src/richtext/richtextprint.cpp
- src/richtext/richtextstyledlg.cpp
- src/richtext/richtextstyles.cpp
- src/richtext/richtextsymboldlg.cpp
- src/richtext/richtextxml.cpp
- src/xrc/xh_richtext.cpp
- </set>
- <set var="RICHTEXT_HDR" hints="files">
- wx/richtext/richtextbackgroundpage.h
- wx/richtext/richtextborderspage.h
- wx/richtext/richtextbuffer.h
- wx/richtext/richtextbulletspage.h
- wx/richtext/richtextctrl.h
- wx/richtext/richtextdialogpage.h
- wx/richtext/richtextfontpage.h
- wx/richtext/richtextformatdlg.h
- wx/richtext/richtexthtml.h
- wx/richtext/richtextimagedlg.h
- wx/richtext/richtextindentspage.h
- wx/richtext/richtextliststylepage.h
- wx/richtext/richtextmarginspage.h
- wx/richtext/richtextprint.h
- wx/richtext/richtextsizepage.h
- wx/richtext/richtextstyledlg.h
- wx/richtext/richtextstylepage.h
- wx/richtext/richtextstyles.h
- wx/richtext/richtextsymboldlg.h
- wx/richtext/richtexttabspage.h
- wx/richtext/richtextuicustomization.h
- wx/richtext/richtextxml.h
- wx/xrc/xh_richtext.h
- </set>
- <!-- ====================================================================== -->
- <!-- wxSTC -->
- <!-- ====================================================================== -->
- <set var="STC_SRC" hints="files">
- src/stc/stc.cpp
- src/stc/PlatWX.cpp
- src/stc/ScintillaWX.cpp
- </set>
- <set var="STC_HDR" hints="files">
- wx/stc/stc.h
- </set>
- <!-- ====================================================================== -->
- <!-- Define sources for specific libraries: -->
- <!-- ====================================================================== -->
- <!-- wxBase files: -->
- <!-- Nested if would be nicer, but this works -->
- <!-- These are the files for PLATFORM_MACOSX -->
- <set var="BASE_OSX_SRC" hints="files">
- <if cond="TOOLKIT=='OSX_CARBON'">$(BASE_OSX_SHARED_SRC)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(BASE_OSX_SHARED_SRC)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(BASE_OSX_SHARED_SRC)</if>
- <if cond="TOOLKIT=='COCOA'">$(BASE_OSX_NOTWXMAC_SRC)</if>
- <if cond="TOOLKIT=='GTK'">$(BASE_OSX_NOTWXMAC_SRC)</if>
- <if cond="TOOLKIT=='X11'">$(BASE_OSX_NOTWXMAC_SRC)</if>
- <if cond="TOOLKIT=='MOTIF'">$(BASE_OSX_NOTWXMAC_SRC)</if>
- <!-- FIXME: TOOLKIT!='MAC' is what we really want -->
- <!-- FIXME: a hack because there are two wxBase versions on
- Mac; once fixed, this would no longer be needed -->
- <if cond="TOOLKIT==''">$(BASE_OSX_NOTWXMAC_SRC)</if>
- </set>
- <set var="BASE_PLATFORM_SRC" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_SRC)</if>
- <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_SRC) $(BASE_WINCE_SRC)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(BASE_OSX_SHARED_SRC)</if>
- <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_SRC)</if>
- <if cond="PLATFORM_MSDOS=='1'">$(BASE_MSDOS_SRC)</if>
- </set>
- <set var="BASE_AND_GUI_TOOLKIT_SRC" hints="files">
- <if cond="TOOLKIT=='OSX_CARBON'">$(BASE_AND_GUI_OSX_CARBON_SRC)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(BASE_AND_GUI_OSX_COCOA_SRC)</if>
- </set>
- <set var="BASE_AND_GUI_PLATFORM_SRC" hints="files">
- <if cond="PLATFORM_WIN32=='1'">$(BASE_AND_GUI_WIN32_SRC)</if>
- <if cond="PLATFORM_MSDOS=='1'">$(BASE_AND_GUI_MSDOS_SRC)</if>
- <!-- At the moment, BASE_AND_GUI_TOOLKIT_SRC handles this -->
- <!-- if cond="PLATFORM_MACOS=='1'">$(BASE_AND_GUI_MAC_SRC)</if -->
- </set>
- <!-- Nested if would be nicer, but this works -->
- <!-- These are the files for PLATFORM_MACOSX -->
- <set var="BASE_OSX_HDR" hints="files">
- <if cond="TOOLKIT=='OSX_CARBON'">$(BASE_OSX_SHARED_HDR)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(BASE_OSX_SHARED_HDR)</if>
- <if cond="TOOLKIT=='COCOA'">$(BASE_OSX_NOTWXMAC_HDR)</if>
- <if cond="TOOLKIT=='GTK'">$(BASE_OSX_NOTWXMAC_HDR)</if>
- <if cond="TOOLKIT=='X11'">$(BASE_OSX_NOTWXMAC_HDR)</if>
- <if cond="TOOLKIT=='MOTIF'">$(BASE_OSX_NOTWXMAC_HDR)</if>
- <!-- FIXME: TOOLKIT!='MAC' is what we really want -->
- <!-- FIXME: a hack because there are two wxBase versions on
- Mac; once fixed, this would no longer be needed -->
- <if cond="TOOLKIT==''">$(BASE_OSX_NOTWXMAC_HDR)</if>
- </set>
- <set var="BASE_PLATFORM_HDR" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_HDR)</if>
- <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_HDR) $(BASE_WINCE_HDR)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(BASE_OSX_HDR)</if>
- <if cond="PLATFORM_MSDOS=='1'">$(BASE_MSDOS_HDR)</if>
- <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_HDR)</if>
- </set>
- <set var="BASE_SRC" hints="files">
- $(BASE_CMN_SRC) $(BASE_PLATFORM_SRC)
- </set>
- <set var="BASE_AND_GUI_SRC" hints="files">
- $(BASE_AND_GUI_CMN_SRC)
- $(BASE_AND_GUI_PLATFORM_SRC) $(BASE_AND_GUI_TOOLKIT_SRC)
- </set>
- <!-- wxNet files: -->
- <set var="NET_PLATFORM_SRC" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_SRC)</if>
- <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_SRC) $(NET_WINCE_SRC)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(NET_UNIX_SRC) $(NET_OSX_SRC)</if>
- <if cond="PLATFORM_OS2=='1'">$(NET_OS2_SRC)</if>
- </set>
- <set var="NET_PLATFORM_HDR" hints="files">
- <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_HDR) $(NET_WINCE_HDR)</if>
- </set>
- <set var="NET_SRC" hints="files">
- $(NET_CMN_SRC) $(NET_PLATFORM_SRC)
- </set>
- <!-- GUI sources: -->
- <set var="LOWLEVEL_SRC" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK2_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_SRC) $(MSW_DESKTOP_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_SRC)</if>
- <if cond="TOOLKIT=='DFB'">$(DFB_LOWLEVEL_SRC)</if>
- </set>
- <set var="LOWLEVEL_HDR" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_HDR) $(MSW_DESKTOP_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_HDR)</if>
- <if cond="TOOLKIT=='DFB'">$(DFB_LOWLEVEL_HDR)</if>
- </set>
- <set var="PLATFORM_SRC" hints="files">
- <if cond="PLATFORM_UNIX=='1'">$(UNIX_SRC)</if>
- <if cond="PLATFORM_MACOSX=='1'">$(UNIX_SRC)</if>
- </set>
- <set var="GUI_SRC" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK2_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_SRC)</if>
- <if cond="TOOLKIT=='MOTIF'">$(MOTIF_SRC)</if>
- <if cond="TOOLKIT=='MSW'">$(MSW_SRC) $(MSW_DESKTOP_SRC)</if>
- <if cond="TOOLKIT=='WINCE'">$(MSW_SRC) $(WINCE_SRC)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_CARBON_SRC)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_COCOA_SRC)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_IPHONE_SRC)</if>
- <if cond="TOOLKIT=='COCOA'">$(COCOA_SRC)</if>
- <if cond="TOOLKIT=='PM'">$(OS2_SRC)</if>
- </set>
- <set var="GUI_HDR" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK2_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_HDR)</if>
- <if cond="TOOLKIT=='MOTIF'">$(MOTIF_HDR)</if>
- <if cond="TOOLKIT=='MSW'">$(MSW_HDR) $(MSW_DESKTOP_HDR)</if>
- <if cond="TOOLKIT=='WINCE'">$(MSW_HDR) $(WINCE_HDR)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_SHARED_HDR) $(OSX_CARBON_HDR)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_SHARED_HDR) $(OSX_COCOA_HDR)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_SHARED_HDR) $(OSX_IPHONE_HDR)</if>
- <if cond="TOOLKIT=='COCOA'">$(COCOA_HDR)</if>
- <if cond="TOOLKIT=='PM'">$(OS2_HDR)</if>
- </set>
- <set var="CORE_SRC" hints="files">
- <if cond="USE_GUI=='1' and WXUNIV=='0'">
- $(LOWLEVEL_SRC) $(PLATFORM_SRC) $(GUI_SRC) $(GUI_CMN_SRC)
- </if>
- <if cond="USE_GUI=='1' and WXUNIV=='1'">
- $(LOWLEVEL_SRC) $(PLATFORM_SRC) $(UNIV_SRC) $(UNIV_THEMES_SRC) $(GUI_CMN_SRC)
- </if>
- </set>
- <!-- wxAdvanced files: -->
- <set var="ADVANCED_PLATFORM_SRC" hints="files">
- <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_SRC) $(ADVANCED_MSW_DESKTOP_SRC)</if>
- <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_SRC)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(ADVANCED_OSX_CARBON_SRC)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(ADVANCED_OSX_COCOA_SRC)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(ADVANCED_OSX_IPHONE_SRC)</if>
- <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_SRC)</if>
- <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_SRC) $(ADVANCED_MOTIF_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK2_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(ADVANCED_UNIX_SRC) $(ADVANCED_GTK1_SRC)</if>
- <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_SRC)</if>
- <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_SRC)</if>
- </set>
- <set var="ADVANCED_PLATFORM_HDR" hints="files">
- <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_HDR) $(ADVANCED_MSW_DESKTOP_HDR)</if>
- <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_HDR)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(ADVANCED_OSX_CARBON_HDR)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(ADVANCED_OSX_COCOA_HDR)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(ADVANCED_OSX_IPHONE_HDR)</if>
- <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_HDR)</if>
- <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_HDR) $(ADVANCED_MOTIF_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK2_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(ADVANCED_UNIX_HDR) $(ADVANCED_GTK1_HDR)</if>
- <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_HDR)</if>
- <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_HDR)</if>
- </set>
- <!-- wxAdv files not used by wxUniv -->
- <set var="ADVANCED_PLATFORM_NATIVE_SRC" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK_NATIVE_SRC)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_NATIVE_SRC)</if>
- <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_NATIVE_SRC)</if>
- <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_NATIVE_SRC)</if>
- </set>
- <set var="ADVANCED_PLATFORM_NATIVE_HDR" hints="files">
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK_NATIVE_HDR)</if>
- <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_NATIVE_HDR)</if>
- <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_NATIVE_HDR)</if>
- <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_NATIVE_HDR)</if>
- </set>
- <set var="ADVANCED_SRC" hints="files">
- <if cond="WXUNIV=='0'">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC) $(ADVANCED_PLATFORM_NATIVE_SRC)</if>
- <if cond="WXUNIV=='1'">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC) $(ADVANCED_UNIV_SRC)</if>
- </set>
- <set var="ADVANCED_HDR" hints="files">
- <if cond="WXUNIV=='0'">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR) $(ADVANCED_PLATFORM_NATIVE_HDR)</if>
- <if cond="WXUNIV=='1'">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR) $(ADVANCED_UNIV_HDR)</if>
- </set>
- <!-- wxMedia files: -->
- <set var="MEDIA_PLATFORM_SRC" hints="files">
- <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_SRC) $(MEDIA_MSW_DESKTOP_SRC)</if>
- <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_SRC)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(MEDIA_OSX_CARBON_SRC)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(MEDIA_OSX_COCOA_SRC)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(MEDIA_OSX_IPHONE_SRC)</if>
- <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_SRC)</if>
- <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_SRC)</if>
- <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_SRC) $(MEDIA_GTK_SRC)</if>
- <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_SRC)</if>
- <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_SRC)</if>
- </set>
- <set var="MEDIA_PLATFORM_HDR" hints="files">
- <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_HDR) $(MEDIA_MSW_DESKTOP_HDR)</if>
- <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_HDR)</if>
- <if cond="TOOLKIT=='OSX_CARBON'">$(MEDIA_OSX_CARBON_HDR)</if>
- <if cond="TOOLKIT=='OSX_COCOA'">$(MEDIA_OSX_COCOA_HDR)</if>
- <if cond="TOOLKIT=='OSX_IPHONE'">$(MEDIA_OSX_IPHONE_HDR)</if>
- <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_HDR)</if>
- <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_HDR)</if>
- <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_HDR)</if>
- <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_HDR)</if>
- <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_HDR)</if>
- </set>
- <set var="MEDIA_SRC">$(MEDIA_CMN_SRC) $(MEDIA_PLATFORM_SRC)</set>
- <set var="MEDIA_HDR">$(MEDIA_CMN_HDR) $(MEDIA_PLATFORM_HDR)</set>
- <set var="GUI_CORE_HEADERS" hints="files">
- <if cond="USE_GUI=='1' and WXUNIV=='0'">$(GUI_HDR)</if>
- <if cond="USE_GUI=='1' and WXUNIV=='1'">$(UNIV_HDR)</if>
- </set>
- <set var="ALL_GUI_HEADERS" hints="files">
- <if cond="USE_GUI=='1'">
- $(GUI_CMN_HDR)
- $(LOWLEVEL_HDR)
- $(GUI_CORE_HEADERS)
- $(ADVANCED_HDR) $(MEDIA_HDR) $(HTML_HDR)
- $(OPENGL_HDR) $(QA_HDR) $(XRC_HDR) $(AUI_HDR) $(PROPGRID_HDR)
- $(RIBBON_HDR) $(RICHTEXT_HDR) $(STC_HDR) $(WEBVIEW_HDR)
- </if>
- </set>
- <!-- for 'make install', only the headers needed for the installed port -->
- <set var="ALL_BASE_HEADERS" make_var="1" hints="files">
- $(BASE_CMN_HDR) $(BASE_PLATFORM_HDR)
- $(NET_CMN_HDR)
- $(XML_HDR)
- </set>
- <set var="ALL_HEADERS" make_var="1" hints="files">
- $(ALL_BASE_HEADERS) $(ALL_GUI_HEADERS)
- </set>
- <!-- used by 'make dist', should include wxBase headers for all ports -->
- <set var="ALL_PORTS_BASE_HEADERS" make_var="1" hints="files">
- $(BASE_CMN_HDR)
- $(BASE_UNIX_HDR)
- $(BASE_WIN32_HDR) $(BASE_WINCE_HDR)
- $(BASE_OSX_HDR)
- $(BASE_MSDOS_HDR)
- $(NET_CMN_HDR)
- $(XML_HDR)
- </set>
- <!-- used by 'make dist', should include wxBase sources for all ports -->
- <set var="ALL_BASE_SOURCES" make_var="1" hints="files">
- $(BASE_CMN_SRC)
- $(BASE_UNIX_SRC) $(BASE_WIN32_SRC) $(BASE_WINCE_SRC)
- $(BASE_OSX_SRC)
- $(BASE_OS2_SRC)
- $(BASE_MSDOS_SRC)
- $(BASE_AND_GUI_CMN_SRC)
- $(BASE_AND_GUI_OSX_CARBON_SRC)
- $(BASE_AND_GUI_OSX_COCOA_SRC)
- $(BASE_AND_GUI_WIN32_SRC)
- $(NET_CMN_SRC) $(NET_UNIX_SRC) $(NET_OSX_SRC)
- $(NET_WIN32_SRC) $(NET_WINCE_SRC)
- $(XML_SRC)
- </set>
- <!-- ================================================================ -->
- <!-- Define where plugins sources go if USE_PLUGINS=0 -->
- <!-- ================================================================ -->
- <!-- wxAdv sources -->
- <set var="PLUGIN_ADV_SRC">
- <if cond="FORMAT=='autoconf' and PLATFORM_UNIX=='1' and USE_PLUGINS=='0'">
- $(UNIX_SOUND_SRC_SDL)
- </if>
- </set>
- <set var="PLUGIN_MONOLIB_SRC">$(PLUGIN_ADV_SRC)</set>
- </makefile>
|