active questions tagged event-handling - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T22:49:56Zhttp://stackoverflow.com/feeds/tag/event-handlinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852921/mouse-click-location-on-an-image0Mouse click location on an image dkberktas2009-12-05T17:58:05Z2009-12-05T17:58:05Z
<p>I have a GWT container with some stuff in it and an image which is added a clickhandler. </p>
<p>What I try to do is to get the exact mouse event's X and Y coordinates relative to the image. I saw the post <a href="http://stackoverflow.com/questions/1726137/tracking-mouse-movements-over-a-page-with-gwt">here</a>
but this is not what I want.</p>
<p>As far as I can see, I have option like getting the image absolute location and event location but this works only if the user doesn't scroll down the page.</p>
<pre><code>event.getNativeEvent().getClientY()- image.getElement().getAbsoluteTop();
</code></pre>
http://stackoverflow.com/questions/1824744/handle-tilt-left-right-in-wpf0Handle tilt left / right in WPFvasek72009-12-01T08:25:10Z2009-12-05T14:47:52Z
<p>How can I handle tilt left or tilt right mouse event in WPF?
<img src="http://s3images.coroflot.com/user%5Ffiles/individual%5Ffiles/featured/featured%5F1266%5Fst%5FdVYgtBSHIQRPzXvrG4WnUW.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1851620/handling-scroll-event-on-listview-in-c0Handling scroll event on listview in c#murasaki52009-12-05T08:51:22Z2009-12-05T12:09:14Z
<p>I have a listview that generates thumbnail using a backgroundworker. When the listview is being scrolled i want to pause the backgroundworker and get the current value of the scrolled area, when the user stopped scrolling the listview, resume the backgroundworker starting from the item according to the value of the scrolled area. </p>
<p>Is it possible to handle scroll event of a listview? if yes how? if not then what is a good alternative according to what i described above?</p>
http://stackoverflow.com/questions/1850587/adding-scrollbar-listener-to-jogl-project0adding Scrollbar listener to JOGL project death the kid 2009-12-05T00:34:15Z2009-12-05T01:02:47Z
<p>As the title suggests I am trying to add an event listener to a <a href="http://kenai.com/projects/jogl/pages/Home" rel="nofollow">JOGL</a> project to no avail. Any
help would be much appreciated </p>
http://stackoverflow.com/questions/1850229/how-to-catch-events-in-multi-threaded-application-that-can-be-watched-by-main-thr0How to catch events in multi-threaded application that can be watched by main thread?IPX Ares2009-12-04T23:02:28Z2009-12-04T23:44:08Z
<p>I have a console application (VB.NET). When it is started, it spawns worker threads to find work in the database and do the task, then look for the next task (A workflow basically).</p>
<p>The problem that I have is that I have my Event Handler in the main thread that spawns the worker threads. Those workers, if they error, raise an event to a public delegate. However my main thread is not detecting these events, and I cannot figure out how to make it. My intention is to do all logging (text/database), email alerts, and restarting the worker to find another task that is not errored. (This will be expanded in the LogErrorMessage routine and such, for now I am just keeping it a simple Console.Writeline so that I can see if the method is being fired or not)</p>
<p>Can this be done? And if so... what am I missing?</p>
<p>Here is the code around what I am trying to do:</p>
<p><strong>Logger Class:</strong></p>
<pre><code>Public Delegate Sub LogDelegateError(ByVal Ex As Exception)
Public Class EventLogger
Public Event EventError As LogDelegateError
Public Sub New()
End Sub
Public Sub LogError(ByVal ex As Exception)
RaiseEvent EventError(ex)
End Sub
End Class
</code></pre>
<p><strong>Main Thread:</strong></p>
<pre><code>Private WithEvents _ErrorLogger As EventLogger
Public Sub Process()
_ErrorLogger = New EventLogger
AddHandler _ErrorLogger.EventError, New LogDelegateError(AddressOf LogErrorMessage)
[Loop]
Dim tWorker As Thread = New Thread(AddressOf oWorker.MainProcess)
tWorker.Priority = WorkerNode.Attributes(SETTING_NAME_PRIORITY).Value
tWorker.Start()
[End Loop]
[In Finally]
RemoveHandler _ErrorLogger.EventError, New LogDelegateError(AddressOf LogErrorMessage)
End Sub
Private Sub LogErrorMessage(ByVal ex As Exception) Handles _ErrorLogger.EventError
Console.WriteLine()
Console.WriteLine("INTERNAL ERROR:")
Console.WriteLine(ex.ToString())
Console.WriteLine()
End Sub
</code></pre>
<p><strong>WorkerBase:</strong></p>
<pre><code>Private _Log As New EventLogger
Public Sub MainProcess()
Try
[SOME WORK]
Catch ex As Exception
Me._Log.LogError(ex)
End Try
End Sub
</code></pre>
<p>I am currently getting no errors that something is wrong, nor is the application hitting the expected handler in the main thread.</p>
http://stackoverflow.com/questions/1846731/how-to-raise-a-global-event-in-dojo0How to raise a global event in dojo?the_drow2009-12-04T12:41:22Z2009-12-04T16:11:02Z
<p>Hello,
I am trying to raise an event to all of the widgets that catch it.<br>
I have an authentication widget and other widgets that depeand on the fact that the user is logged in.<br>
I would like to raise an event to all of those widgets when a user is logged in without connecting them manually.<br>
How can it be done? </p>
<p>Thanks in advnace,<br>
Omer.</p>
http://stackoverflow.com/questions/1846255/trigger-event-of-auto-popup-list-selection-via-javascript1Trigger event of auto popup list selection via javascriptMountain2009-12-04T11:00:56Z2009-12-04T11:50:51Z
<p>I have previously entered value 1111, 1222, and 1333 into a HTML text input. Now if I enter 1 to the text input, it should popup a list with value 1111, 1222, and 1333 as available options. How do you trigger an event when any one of these options is selected?</p>
<p>I have a javascript function that performs a calculation on values entered into the text input via "onkeyup" event. This works very well if the user just enter value via keyboard. However, it does not work if the user is selecting a previously entered value from the auto popup list.</p>
<p>I know we can turn off the auto popup list by adding autocomplete="off" to the form/text input. But is there any solution to make it work with the auto popup list? I have tried all available event options including "onchange", but none of those works.</p>
<p>The HTML code is very simple:</p>
<pre><code><input id="elem_id_1" name="output" type="text" value="0" onkeyup="update();"/>
</code></pre>
<p>The js function is very simple too:</p>
<pre><code>function update() {
var a = $('elem_id_1').value;
$('elem_id_2').value = a / 100;
}
</code></pre>
http://stackoverflow.com/questions/1845360/how-to-add-event-handler-to-ajax-control-toolkit-extenders0How to add event handler to AJAX Control Toolkit ExtendersNassign2009-12-04T07:18:27Z2009-12-04T07:18:27Z
<p>I have been trying to add a toggle button using the ToggleButtonExtender and the MutuallyExclusiveCheckboxExtender. However, I cannot add an additional client side event handler for the click event of the Extender created button. I tried to add a BehaviorId that I access in the onLoad of the Javascript via the $find('') function. However, as I search the content of the function, I did not see any method that seems to add an event handler to the function. I did see _checkChangedHandler() but there is no documentation about it.</p>
http://stackoverflow.com/questions/1842513/recursive-sharepoint-event-handers0Recursive SharePoint Event HandersDan Revell2009-12-03T20:00:55Z2009-12-03T22:17:00Z
<p>I've got an Event Receiver for when a list item is Updated (ItemUpdated and not ItemUpdating). Inside the receiver I then update the list item again. This naturally sets off some recursive event calls as I would expect. Putting a break point at the start of the event handler, I count it stoppping in the event 10 times and then it just finishes. Might there be some sort of recursion protection inside SharePoint exactly to protect against this sort of thing?</p>
http://stackoverflow.com/questions/1837886/how-to-correctly-pass-some-custom-parameters-to-event-handlers-in-wpf0How to correctly pass some custom parameters to event handlers in WPF?rem2009-12-03T05:41:59Z2009-12-03T07:04:46Z
<p>What could be a correct way to assign parameters to objects in WPF window (objects as simple as rectangles) and pass them to event handlers on mouse clicks?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1835303/what-is-the-way-to-minimize-number-of-similar-event-handlers0What is the way to minimize number of similar event handlers?rem2009-12-02T19:41:11Z2009-12-02T20:27:52Z
<p>A WPF window should have hundreds of objects (rows of rectangles) and mouse clicking on each of them should fire similar actions. These actions differ only by several parameters (say "No. of Row" and "No. of position in a row").
Should I have hundreds of almost the same event handlers or how I could optimize my code?</p>
<p>Please give me some tips, just to move to the right direction.</p>
<p>Best regards. </p>
http://stackoverflow.com/questions/1833660/adding-and-removing-events-in-asp-net1Adding and removing events in ASP.NETMatthewMartin2009-12-02T15:32:59Z2009-12-02T16:17:16Z
<p>I've recently discovered this technique in my ASP.NET code base that I maintain. What does it do and how would I use it? And Maybe more importantly, would this work at all given ASP.NET is using simulated-page-life-cycle-events?</p>
<pre><code> public event EventHandler CancelEvent
{
add { cancelButton.Click += value; }
remove { cancelButton.Click -= value; }
}
</code></pre>
<p>Resharper says the event is currently unused and I've never seen this technique before. Usually I wire up my events on OnInit.. eg.</p>
<pre><code> cancelButton.Click += HandleClick;
</code></pre>
http://stackoverflow.com/questions/1830307/java-static-vs-non-static-using-this-and-event-handlers0java static vs non-static using this and event handlersdanwoods2009-12-02T02:32:31Z2009-12-02T02:59:49Z
<p>Hello,
I'm trying to learn about java's event handlers and keep getting errors with type type (static/non-static) methods I create. Some code I'm trying to write looks like:</p>
<pre><code>import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
public class Main extends JFrame implements ActionListener{
static private int[] intArray = new int[10000];
static private int numOfInts = 0;
static private int avg = 0;
public static void main(String[] args) {
//create main frame
JFrame frame = new JFrame();
frame.setTitle("Section V, question 2");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(350, 250);
frame.setLayout(new GridLayout(4, 1));
frame.setVisible(true);
//create instruction label and add to frame
Label instructions = new Label("Follow the instructions on the exam to use this program");
frame.add(instructions);
//create textfield for index entry and add to frame
JTextField indexEntry = new JTextField();
frame.add(indexEntry);
//create button for average and add to frame
JButton avgBtn = new JButton("Click for Average");
frame.add(avgBtn);
avgBtn.addActionListener(avgBtn);
//create panel to display results and add to frame
JPanel resultsPanel = new JPanel();
resultsPanel.setBackground(Color.BLUE);
frame.add(resultsPanel);
//read in from file
readFromFile();
//compute average
computeAverage();
System.out.println(avg);
}
static private void readFromFile(){
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("numbers.dat");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
//Read File Line By Line
int i = 0;
while ((strLine = br.readLine()) != null) {
// Print the content on the console
System.out.println (strLine);
intArray[i] = Integer.parseInt(strLine);
numOfInts++;
i++;
}
//Close the input stream
in.close();
System.out.println ("numOfInts = " + numOfInts);
}
catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
static private void computeAverage(){
int sum = 0;
for(int i = 0; i < numOfInts; i++)
sum += intArray[i];
avg = sum/numOfInts;
//return avg;
}
public void actionPerformed(ActionEvent e){
if(e.getSource() == avgBtn){
computeAverage();
}
}
}
</code></pre>
<p>Which is supposed to setup a GUI read in some ints from a file and then compute their average when a button is pressed. However, I keep getting problems with the static/non-static stuff and the event handers. My current error are:<br>
Main.java:35: addActionListener(java.awt.event.ActionListener) in javax.swing.AbstractButton cannot be applied to (javax.swing.JButton)<br>
avgBtn.addActionListener(avgBtn); </p>
<p>Main.java:91: cannot find symbol<br>
symbol : variable avgBtn<br>
location: class Main<br>
if(e.getSource() == avgBtn){ </p>
<p>I understand that the compiler can't find avgBtn because its defined within another function (Main()), but can anyone shed some light on how to attach an event handler to it? tried 'this' to no avail also...Thanks in advance, and if you see anything else wrong I'd love to hear how I can make it better.</p>
http://stackoverflow.com/questions/1822838/can-i-flush-the-event-stack-within-firefox-using-javascript1Can I flush the event stack within Firefox using Javascript?dacracot2009-11-30T22:24:48Z2009-11-30T23:00:08Z
<p>I have a hierarchy of tags within my HTML which all contain onclick event handlers. The onclick is pushed onto the event stack from the leaf back through the root of the hierarchy. I only want to respond to the leaf onclick event. Can I flush the event stack rather than using a flag?</p>
<p>For instance...</p>
<pre><code> <ul>
<li onclick="nada('1');"><a href="#1">1</a></li>
<li onclick="nada('2');"><a href="#2">2</a>
<ul>
<li onclick="nada('2.1');"><a href="#2.1">2.1</a></li>
<li onclick="nada('2.2');"><a href="#2.2">2.2</a></li>
<li onclick="nada('2.3');"><a href="#2.3">2.3</a></li>
</ul>
</li>
<li onclick="nada('4');"><a href="#4">4</a></li>
<li onclick="nada('5');"><a href="#5">5</a></li>
</ul>
</code></pre>
<p>Clicking on 2.2 using this function...</p>
<pre><code>function nada(which)
{
alert(which);
}
</code></pre>
<p>...will result in two alerts for '2.2' and '2'.</p>
<p>What could I add to the nada function to eliminate the alert for '2'?</p>
http://stackoverflow.com/questions/1648804/asp-net-button-says-it-cant-find-the-method-i-put-in-onclick0ASP.NET button says it can't find the method I put in OnClickSLC2009-10-30T09:30:00Z2009-11-30T18:13:21Z
<p>I have a log out button on my main menu and I want it to run a method to log out. However I want to store this method in a separate class as a static method, since this code may be called from other locations too.</p>
<p>Compiler error message: </p>
<p><code>CS1061: 'ASP.adminpages_masterpages_adminsystem_master' does not contain a definition for 'ExtensionMethods' and no extension method 'ExtensionMethods' accepting a first argument of type 'ASP.adminpages_masterpages_adminsystem_master' could be found (are you missing a using directive or an assembly reference?)</code></p>
<p>My ExtensionMethods class:</p>
<pre><code>namespace ExtensionMethods
{
public static class MyExtensionMethods
{
public static void Logout(object sender, EventArgs e)
{
//Logout Code
}
}
}
</code></pre>
<p>My button:</p>
<pre><code><asp:LinkButton runat="server" OnClick="ExtensionMethods.MyExtensionMethods.Logout" Text="Log Out"></asp:LinkButton>
</code></pre>
<p>Ideas?</p>
http://stackoverflow.com/questions/1821218/how-can-i-trace-every-event-dispatched-by-a-component-or-its-descendants2How can I trace every event dispatched by a component or its descendants?Chris R2009-11-30T17:32:59Z2009-11-30T18:01:01Z
<p>I am trying to determine what events I need to wait for in a test in order to ensure that my custom component has updated all of its properties. I was using VALUE_COMMIT, but for some reason that isn't working out for me.</p>
<p>So, I want some easy mechanism for tracing every event dispatched from a component. Is this possible?</p>
http://stackoverflow.com/questions/1817342/flex-4-bubbling-custom-event0Flex 4 Bubbling custom eventColossal Paul2009-11-30T00:46:20Z2009-11-30T00:52:44Z
<p>Hi,</p>
<p>How to create a bubbling custom event in Flex 4?</p>
<p>To create and expose a custom event in MXML, you need to declare it at the component that will dispatch the event with this line:</p>
<pre><code><fx:Metadata>
[Event(name="select", type="my.engine.events.SelectionEvent")]
</fx:Metadata>
</code></pre>
<p>This allows you to:</p>
<pre><code><my:CustomComponent select="doSomething()"/>
</code></pre>
<p>However, how do you make this bubble upwards. I want to do this</p>
<pre><code><s:DataGroup select="doSomethingForAll();">
<s:itemRenderer>
<fx:Component>
<my:CustomComponent/>
</fx:Component>
</s:itemRenderer>
</s:DataGroup/>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1811186/jquery-event-target-problem-in-ie70JQuery Event.target problem in ie7Drock2009-11-28T00:51:42Z2009-11-28T01:08:53Z
<p>Trying to accses the class name from the event.target object. Works in FF, Safari, and Chrome. InternetExplorer 7 alerts "undefined". Any suggestions?</p>
<pre><code><script type="text/javascript">
$("document").ready(function(){
$(".page").hide();
$(".page:first").show();
$("#navBar a").bind("click", linkClicked);
});
function linkClicked(event){
$("div.page:visible").fadeOut(250, function(){
var $target = $(event.target);
alert($target.attr("class"));
//$("#" + $(event.target).attr("class")).fadeIn(250);
});
}
</script>
</code></pre>
http://stackoverflow.com/questions/1641182/how-can-i-catch-a-ctrl-c-event-c2How can I catch a ctrl-c event? (C++)Scott2009-10-29T01:39:02Z2009-11-28T00:56:28Z
<p>How do I catch a ctrl-c event in C++?</p>
http://stackoverflow.com/questions/1809155/mouse-over-listener-for-flextable-in-gwt-1-70Mouse Over listener for FlexTable in GWT 1.7?drozzy2009-11-27T14:41:43Z2009-11-27T23:52:50Z
<p>How do you add an event listener or handler to widgets in GWT 1.7?</p>
<p>I know there are some questions alreayd about this on SO but it seems they are outdated.
For example (ignoring the fact that there is a :hover in CSS) how do I add a Hover listener to a FlexTable for example?</p>
http://stackoverflow.com/questions/1810710/obtaining-the-value-of-a-select-dropdown-from-within-a-function0obtaining the value of a select dropdown from within a functionPetroleumJelliffe2009-11-27T21:36:30Z2009-11-27T22:57:20Z
<p>I have a method of an object called <code>update</code> that generates an integer, and if it's different than the value of the <code>region</code> variable, assigns it to <code>region</code>. If the integer is the same as <code>region</code> then the user selects a value from a <code><select></code> dropdown menu.</p>
<p>I'm trying to figure out how to get the value of the <code><select></code> into the function.</p>
<pre><code><form>
</code></pre>
<p>
Select a region
Northeast
Southeast
North Central
South Central
Plains
Northwest
Southwest</p>
<p>
</p>
<pre><code> //Destination object
var destination= function(spec) {
spec= spec||{};
var that= {};
that.update= function(newDest) {
function roll() {
return Math.floor(Math.random()*6)+Math.floor(Math.random()*6)+Math.floor(Math.random()*2)*11;
};
newDest= newDest||{};
//newDest is event
newRegion=newDest.target.value;
//newDest is empty object
newRegion= newDest.region||codes[roll()][0];
if (spec.region=== newRegion) {
//ask user for new region
//how do i use event handlers here?
};
//set new region
spec.region= newRegion;
//set new city
spec.city= newDest.city||codes[roll()][newRegion];
};
return that;
};
</code></pre>
http://stackoverflow.com/questions/1800595/event-handler-in-datatemplate0Event handler in DataTemplatelevanovd2009-11-25T23:13:10Z2009-11-27T00:52:31Z
<p>I have WPF ComboBox inside a data template (a lot of comboboxes in listbox) and I want to handle enter button. It would be easy if it was e.g. a button - I would use Command + Relative binding path etc. Unfortunately, I have no idea how handle key press with a Command or how to set event handler from template.
Any suggestions?</p>
http://stackoverflow.com/questions/1800415/commandbinding-ctrl-spacebar0CommandBinding Ctrl + Spacebarparadisonoir2009-11-25T22:37:09Z2009-11-25T23:31:04Z
<p>I handle commands inside a RoutedCommand class that implements RoutedUICommand. This would help me to block or override a command by checking their CanExecute and Execute if needed. I can override EditingCommand, ApplicationCommand, etc.. One of the command that I cannot even handle is Ctr + Spacebar. Is it a MediaCommand or some other types that I cannot find? I guess it is been handled somewhere else, and that's why I cannot control it.</p>
http://stackoverflow.com/questions/1798074/datavgrid-iew-control-bounded-to-a-collection-question0datavgrid iew control bounded to a collection questionstexcec2009-11-25T16:17:21Z2009-11-25T16:45:18Z
<p>Hi All, I'm new with DataGrid View control, and I've this problem:</p>
<p>I would like to build a C# application with this control, bounded to a custom collection. If I change the data in the collection, I would expect that the grid should change in accordance. No problem in implementing this.</p>
<p>The question is, this control comes with the possibility to catch the changes and trigger a procedure, with the grid-cell that has been changed?</p>
<p>Many thanks, and sorry for my poor english.</p>
<p>Regards
stefano</p>
http://stackoverflow.com/questions/1770412/equivalent-of-previewkeydown-of-c-needed-for-native-c-mfc1Equivalent of PreviewKeyDown of C# needed for native C++/MFCIlmari2009-11-20T13:27:10Z2009-11-25T14:11:55Z
<p>Hi,</p>
<p>I used a ActiveXControl in a C# Forms application and had the possibility to implement a PreviewKeyDown event handler for that ActiveXControl. That was needed to specify that, e.g. the [ALT] key, is an input key. </p>
<p>For some reasons or other I have to reimplement the application in native C++/MFC and don't know how to specify that this [ALT] key is an input key and to be handled by the ActiveXControl.</p>
http://stackoverflow.com/questions/1795182/wpf-update-panels-content-with-a-button-click0WPF - Update panel's content with a button clickBranimir2009-11-25T07:14:57Z2009-11-25T08:09:34Z
<p>Hi evryone,</p>
<p>I am pretty new to WPF and I cannot figure out how to update a specific part of my page with a single button click.</p>
<p>In my application design I have a menu with buttons to the left and to the right I have a series of panels. One is status bar (bottom), one Info bar(top) and inbetween I want to visualize the info that the program shows.</p>
<p>I use a stack panel there and I assign a name to it:
</p>
<p>Still I cannot properly handle the call that a button should do in order to change the content of the panel. I have read that maybe the key is in creating custom controls (1 for my add form, then for the search form and so on) yet I am not sure that this is the best thing I can do.</p>
<p>The other option I have read about is using a Frame (even though it's a desktop application. Yet I am afraid that this may lead to future problems when I start calling for info from the database.</p>
<p>Please, Advice me on what to do.</p>
http://stackoverflow.com/questions/1793864/listen-for-events-from-browser-find-window-in-javascript0Listen for Events from Browser "Find" Window in JavaScriptviatropos2009-11-25T00:11:09Z2009-11-25T00:38:29Z
<p>Is there a way to listen for typing into the browser's "find" window in <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a>?</p>
<p><img src="http://images.apple.com/safari/images/find20070611.png" alt="this window"></p>
<p>I'd like to be able to reinterpret the search text from JavaScript. What do I need to add an event listener for?</p>
http://stackoverflow.com/questions/1792941/silverlight-3-custom-control-event-handling-navigation0Silverlight 3 Custom Control Event-handling NavigationNetWriter2009-11-24T21:10:45Z2009-11-24T21:10:45Z
<p>I have a Silverlight 3 aplication, The solution (of 3 projects) looks Like this:</p>
<p>ChartsCustomControl<br>
PieChart.cs<br>
SLGrid.Web<br>
SLGrid<br>
NavigationPage.xaml<br>
Views<br>
PieChartPage.xaml<br>
PieChartPage.xaml.cs</p>
<p>I'm using the navigation Frame control, and have a folder named Views for the different pages. PieChartPage.xaml.cs calls the pie chart custom control (ChartsCustomControl / PieChart.cs). </p>
<p>Inside PieChart.cs, I have successfully attached an event handler (slice_MouseLeftButtonDown) to the pie slices so that a message box comes up showing the name of the pie slice that was clicked on. But instead of the message box, I need to pass that name back to PieChartPage.xaml.cs so I can act on that pie slice click from there.</p>
<p>How do I do that?</p>
http://stackoverflow.com/questions/1789257/is-it-possible-to-create-eventlisteners-for-string-int-bool-at-all1Is it possible to create eventlisteners for string, int, bool at all?MysticEarth2009-11-24T10:43:56Z2009-11-24T15:58:24Z
<p>Is it possible at all to create eventlisteners (i.e. when the value changes) for a variable of type string, int, bool, etc.? </p>
<p>I haven't seen this in any programming language so far, except for some Collections (like ArrayCollection in Flex), which use events to detect changes in the collection.</p>
<p>If not possible at all, why not? What's the reason for this? Are there any best practices to achieve the same sort of functionality? And what about extending functionality with databinding?</p>
http://stackoverflow.com/questions/975918/processing-events-in-surfaceview1Processing events in SurfaceViewniko2009-06-10T14:25:05Z2009-11-24T15:02:06Z
<p>Hi,</p>
<p>I am creating a custom Widget which extends SurfaceView and I am planning to use it for camera preview.</p>
<p>In the main activity I tried to implement some event listeners but can't catch any event.</p>
<p>This is the part of code where I tried to add an event listener:</p>
<pre><code>videoPreview = (CaptureView)findViewById(R.id.capturePreview);
videoPreview.setOnKeyListener(new OnKeyListener(){
public boolean onKey(View v, int keyCode, KeyEvent event){
switch(keyCode)
{
case KeyEvent.KEYCODE_CAMERA:
videoPreview.TakePicture();
return true;
}
return false;
}
});
</code></pre>
<p>If I press a button the LogCat outputs "Continuing to wait for key to be dispatched" line.</p>
<p>Does anyone know how to implement event listeners in main activity using SurfaceView classes?</p>
<p>Thanks!</p>