Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6832369
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:51:01+00:00 2026-05-26T22:51:01+00:00

So I was wondering how would I make it so that I can select

  • 0

So I was wondering how would I make it so that I can select a coordinate in a graph, using the mouse, similar to the effect that happens when you select a cell on the website http://demos.sftrabbit.co.uk/game-of-life/

I want to be able to use it on a Ubuntu OS. Thanks for any tips.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T22:51:02+00:00Added an answer on May 26, 2026 at 10:51 pm

    I would recommend that you use one of the C libraries for this. Either curses or ncurses. For some mouse examples with ncurses, take a look at:
    http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/mouse.html

    here’s a simple example that turns every position that you click on into an ‘X’:

    #include "ncurses.h"
    #include <cstdlib>
    
    MEVENT mev;
    
    void quit(void)
    {
        endwin();
    }
    
    int main(void)
    {
      initscr();
      atexit(quit);
      clear();
      noecho();
      curs_set(0);
      cbreak();
      keypad(stdscr, TRUE);
      start_color();
      mousemask(BUTTON1_CLICKED, 0);
    
      mvaddstr(5, 3, "Click to turn a character into an 'X'");
      refresh();
    
      for(;;)
      {
        if(getch() == KEY_MOUSE && getmouse(&mev) == OK)
        {
        mvaddch(mev.y,mev.x,'X');
        refresh();
        }
      }   
      return (0);  
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to make a bot that can carry on a simple conversation.
I'm coming from a web-development background and I am wondering how I would make
I'm wondering what good ways there would be make assertions about synchronization or something
I was just wondering which would be cheaper, using a try catch block for
I have run a few using batch jobs, but, I am wondering what would
suppose I want to make a Flash browser game that can be played in
Hey, I'm having a strange issue. I'm wondering if anyone can help me make
I am wondering would this make any real efficieny difference (ie computation time, memory
I was wondering what would be a good way to accomplish the following using
I was wondering would I still need to use a basic game loop for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.