summaryrefslogtreecommitdiff
path: root/wintable
AgeCommit message (Collapse)Author
2015-12-11LET'S GET THIS FINAL REWRITE EVER STARTEDPietro Gagliardi
2015-02-25More TODOs.Pietro Gagliardi
2015-02-19More TODOs.Pietro Gagliardi
2015-02-19Removed the last bit of new Windows Table test initialization stuff now that ↵Pietro Gagliardi
tableSetSelection is in; moved into the test program instead.
2015-02-19Added tableSetSelection to the new Windows Table and hooked it up to the ↵Pietro Gagliardi
package ui Table.
2015-02-19Added tableGetSelection to the new Windows Table and hooked it up to package ↵Pietro Gagliardi
ui's Table.
2015-02-19Added tableNotificationSelectionChanged on the Windows Table and hooked it ↵Pietro Gagliardi
up to package ui's Table.
2015-02-19More TODOs.Pietro Gagliardi
2015-02-18More TODOs.Pietro Gagliardi
2015-02-18"Fixed" the other Windows Table problem. Now to implement selection and fix ↵Pietro Gagliardi
the fonts...
2015-02-18Began fixing the new Windows Table. In its current state one bug is fixed ↵Pietro Gagliardi
and another has been spotted, with the diagnosis coming next.
2015-02-17More Windows Table migration.Pietro Gagliardi
2015-02-17Split the public API of wintable into a file includethis.h for package ui.Pietro Gagliardi
2015-02-17Even more TODOs.Pietro Gagliardi
2015-02-17More TODOs.Pietro Gagliardi
2015-02-17Removed stale TODO left over from previous commit.Pietro Gagliardi
2015-02-17Implemented some accessibility events. More TODOs.Pietro Gagliardi
2015-02-17Removed accessibilitynotes; no longer needed.Pietro Gagliardi
2015-02-17Implemented get_accValue(), put_accName(), and put_accValue(). Merged the ↵Pietro Gagliardi
contents of accessibilitynotes into accessibility.h. More TODOs.
2015-02-17Implemented (most of) get_accState().Pietro Gagliardi
2015-02-17Implemented get_accSelection().Pietro Gagliardi
2015-02-17Implemented get_accRole().Pietro Gagliardi
2015-02-17Implemented get_accParent().Pietro Gagliardi
2015-02-17"Implemented" get_accName().Pietro Gagliardi
2015-02-17Implemented get_accKeyboardShortcut().Pietro Gagliardi
2015-02-17Implemented get_accHelp() and get_accHelpTopic().Pietro Gagliardi
2015-02-16Implemented get_accFocus()... mostly. Needs testing.Pietro Gagliardi
2015-02-16Implemented get_accDescription().Pietro Gagliardi
2015-02-16Implemented get_accDefaultAction().Pietro Gagliardi
2015-02-16Implemented get_accChildCount().Pietro Gagliardi
2015-02-16Implemented get_accChild(). More TODOs.Pietro Gagliardi
2015-02-16Marked edge cases for a future Stack Overflow question.Pietro Gagliardi
2015-02-16Implemented accSelect().Pietro Gagliardi
2015-02-16Implemented accNavigate().Pietro Gagliardi
2015-02-16More TODOs.Pietro Gagliardi
2015-02-16Defined what the right edge of a row is, rewrote accHitTest() to be simpler ↵Pietro Gagliardi
with these new rules, and more/more detailed TODOs in accLocation().
2015-02-15Made accHitTest() on a cell always succeed, for the purposes of checking things.Pietro Gagliardi
2015-02-15Removed leftover debugging printf()s.Pietro Gagliardi
2015-02-15Converted all GetLastError() calls in the Table accessible object to HRESULTs.Pietro Gagliardi
2015-02-15Implemented most of Table accLocation(). More TODOs.Pietro Gagliardi
2015-02-15Kinda sorta implemented Table accHitTest().Pietro Gagliardi
2015-02-15Implemented accDoDefaultAction() for Table.Pietro Gagliardi
2015-02-14Our use of LresultFromObject() now requires us to release our initial ↵Pietro Gagliardi
reference immediately to avoid a memory leak (as objects are created on the fly now); do it.
2015-02-14Fixed the creation bug (incorrect empty doubly linked list handling; see ↵Pietro Gagliardi
http://stackoverflow.com/questions/28520939/how-are-inspect-exe-ui-accessibility-checker-causing-my-program-to-gracefully-re).
2015-02-14Now debugging why the accessible objects aren't being created anymore. Will ↵Pietro Gagliardi
keep the linked list debugging stuff. Also fixed a small "error" in the call to CreateStdAccessibleObject() (not a compiler warning due to how void * works).
2015-02-14Found one bug: forgot to update t->firstAcc in tableAccRelease().Pietro Gagliardi
2015-02-14Changed the Table accessibility objects to be a doubly linked list; updated ↵Pietro Gagliardi
the Table code itself appropriately. Implemented RPC_E_DISCONNECTED handlers as well. Will test now.
2015-02-14Added more test accessibility implementations. I'm going to need to ↵Pietro Gagliardi
implement the save list now :S
2015-02-14More accessibility utility definitions.Pietro Gagliardi
2015-02-14Started the real accessibility implementation. Utility functions and role ↵Pietro Gagliardi
system for now.